70bc187ac673e599defd8cfaab6a7dcb392ad9c4
[platform/core/dotnet/build-tools.git] /
1 <?xml version="1.0"?>\r
2 <doc>\r
3     <assembly>\r
4         <name>Microsoft.AspNetCore.Mvc.Abstractions</name>\r
5     </assembly>\r
6     <members>\r
7         <member name="T:Microsoft.Extensions.Internal.ClosedGenericMatcher">\r
8             <summary>\r
9             Helper related to generic interface definitions and implementing classes.\r
10             </summary>\r
11         </member>\r
12         <member name="M:Microsoft.Extensions.Internal.ClosedGenericMatcher.ExtractGenericInterface(System.Type,System.Type)">\r
13             <summary>\r
14             Determine whether <paramref name="queryType"/> is or implements a closed generic <see cref="T:System.Type"/>\r
15             created from <paramref name="interfaceType"/>.\r
16             </summary>\r
17             <param name="queryType">The <see cref="T:System.Type"/> of interest.</param>\r
18             <param name="interfaceType">The open generic <see cref="T:System.Type"/> to match. Usually an interface.</param>\r
19             <returns>\r
20             The closed generic <see cref="T:System.Type"/> created from <paramref name="interfaceType"/> that\r
21             <paramref name="queryType"/> is or implements. <c>null</c> if the two <see cref="T:System.Type"/>s have no such\r
22             relationship.\r
23             </returns>\r
24             <remarks>\r
25             This method will return <paramref name="queryType"/> if <paramref name="interfaceType"/> is\r
26             <c>typeof(KeyValuePair{,})</c>, and <paramref name="queryType"/> is\r
27             <c>typeof(KeyValuePair{string, object})</c>.\r
28             </remarks>\r
29         </member>\r
30         <member name="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor">\r
31             <summary>\r
32             Describes an MVC action.\r
33             </summary>\r
34         </member>\r
35         <member name="M:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor.#ctor">\r
36             <summary>\r
37             Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor"/>.\r
38             </summary>\r
39         </member>\r
40         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor.Id">\r
41             <summary>\r
42             Gets an id which uniquely identifies the action.\r
43             </summary>\r
44         </member>\r
45         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor.RouteValues">\r
46             <summary>\r
47             Gets or sets the collection of route values that must be provided by routing\r
48             for the action to be selected.\r
49             </summary>\r
50         </member>\r
51         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor.AttributeRouteInfo">\r
52             <summary>\r
53             Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.Routing.AttributeRouteInfo"/>.\r
54             </summary>\r
55         </member>\r
56         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor.ActionConstraints">\r
57             <summary>\r
58             The set of constraints for this action. Must all be satisfied for the action to be selected.\r
59             </summary>\r
60         </member>\r
61         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor.EndpointMetadata">\r
62             <summary>\r
63             Gets or sets the endpoint metadata for this action.\r
64             </summary>\r
65         </member>\r
66         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor.Parameters">\r
67             <summary>\r
68             The set of parameters associated with this action.\r
69             </summary>\r
70         </member>\r
71         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor.BoundProperties">\r
72             <summary>\r
73             The set of properties which are model bound.\r
74             </summary>\r
75         </member>\r
76         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor.FilterDescriptors">\r
77             <summary>\r
78             The set of filters associated with this action.\r
79             </summary>\r
80         </member>\r
81         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor.DisplayName">\r
82             <summary>\r
83             A friendly name for this action.\r
84             </summary>\r
85         </member>\r
86         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor.Properties">\r
87             <summary>\r
88             Stores arbitrary metadata properties associated with the <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor"/>.\r
89             </summary>\r
90         </member>\r
91         <member name="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptorExtensions">\r
92             <summary>\r
93             Extension methods for <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor"/>.\r
94             </summary>\r
95         </member>\r
96         <member name="M:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptorExtensions.GetProperty``1(Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor)">\r
97             <summary>\r
98             Gets the value of a property from the <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor.Properties"/> collection\r
99             using the provided value of <typeparamref name="T"/> as the key.\r
100             </summary>\r
101             <typeparam name="T">The type of the property.</typeparam>\r
102             <param name="actionDescriptor">The action descriptor.</param>\r
103             <returns>The property or the default value of <typeparamref name="T"/>.</returns>\r
104         </member>\r
105         <member name="M:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptorExtensions.SetProperty``1(Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor,``0)">\r
106             <summary>\r
107             Sets the value of an property in the <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor.Properties"/> collection using\r
108             the provided value of <typeparamref name="T"/> as the key.\r
109             </summary>\r
110             <typeparam name="T">The type of the property.</typeparam>\r
111             <param name="actionDescriptor">The action descriptor.</param>\r
112             <param name="value">The value of the property.</param>\r
113         </member>\r
114         <member name="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptorProviderContext">\r
115             <summary>\r
116             A context for <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider"/>.\r
117             </summary>\r
118         </member>\r
119         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptorProviderContext.Results">\r
120             <summary>\r
121             Gets the <see cref="T:System.Collections.Generic.IList`1" /> of <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor"/> instances of <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider"/>\r
122             can populate.\r
123             </summary>\r
124         </member>\r
125         <member name="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionInvokerProviderContext">\r
126             <summary>\r
127             A context for <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider"/>.\r
128             </summary>\r
129         </member>\r
130         <member name="M:Microsoft.AspNetCore.Mvc.Abstractions.ActionInvokerProviderContext.#ctor(Microsoft.AspNetCore.Mvc.ActionContext)">\r
131             <summary>\r
132             Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionInvokerProviderContext"/>.\r
133             </summary>\r
134             <param name="actionContext">The <see cref="T:Microsoft.AspNetCore.Mvc.ActionContext"/> to invoke.</param>\r
135         </member>\r
136         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.ActionInvokerProviderContext.ActionContext">\r
137             <summary>\r
138             Gets the <see cref="T:Microsoft.AspNetCore.Mvc.ActionContext"/> to invoke.\r
139             </summary>\r
140         </member>\r
141         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.ActionInvokerProviderContext.Result">\r
142             <summary>\r
143             Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvoker"/> that will be used to invoke <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.ActionInvokerProviderContext.ActionContext" />\r
144             </summary>\r
145         </member>\r
146         <member name="T:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider">\r
147             <summary>\r
148             Defines a contract for specifying <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor"/> instances.\r
149             </summary>\r
150             <remarks>\r
151             <para>\r
152             On application initialization, MVC invokes all registered instances of <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider"/> to \r
153             perform <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor" /> discovery. \r
154             <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider"/> instances are invoked in the ascending sort order of <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider.Order"/>.  \r
155             </para>\r
156             <para>\r
157             Each provider has its <see cref="M:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptorProviderContext)"/> method\r
158             called in sequence and given the same instance of <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionInvokerProviderContext"/>. Then each\r
159             provider has its <see cref="M:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptorProviderContext)"/> method called in the reverse order. Each instance has\r
160             an opportunity to add or modify <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptorProviderContext.Results"/>.\r
161             </para>\r
162             <para>\r
163             As providers are called in a predefined sequence, each provider has a chance to observe and decorate the\r
164             result of the providers that have already run. \r
165             </para>\r
166             </remarks>\r
167         </member>\r
168         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider.Order">\r
169             <summary>\r
170             Gets the order value for determining the order of execution of providers. Providers execute in\r
171             ascending numeric value of the <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider.Order"/> property.\r
172             </summary>\r
173             <remarks>\r
174             <para>\r
175             Providers are executed in an ordering determined by an ascending sort of the <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider.Order"/> property.\r
176             A provider with a lower numeric value of <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider.Order"/> will have its\r
177             <see cref="M:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptorProviderContext)"/> called before that of a provider with a higher numeric value of\r
178             <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider.Order"/>. The <see cref="M:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptorProviderContext)"/> method is called in the reverse ordering after\r
179             all calls to <see cref="M:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptorProviderContext)"/>. A provider with a lower numeric value of\r
180             <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider.Order"/> will have its <see cref="M:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptorProviderContext)"/> method called after that of a provider\r
181             with a higher numeric value of <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider.Order"/>.\r
182             </para>\r
183             <para>\r
184             If two providers have the same numeric value of <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider.Order"/>, then their relative execution order\r
185             is undefined.\r
186             </para>\r
187             </remarks>\r
188         </member>\r
189         <member name="M:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptorProviderContext)">\r
190             <summary>\r
191             Called to execute the provider. \r
192             <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider.Order"/> for details on the order of execution of <see cref="M:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptorProviderContext)"/>.\r
193             </summary>\r
194             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptorProviderContext"/>.</param>\r
195         </member>\r
196         <member name="M:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptorProviderContext)">\r
197             <summary>\r
198             Called to execute the provider, after the <see cref="M:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptorProviderContext)"/> methods of all providers,\r
199             have been called.\r
200             <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider.Order"/> for details on the order of execution of <see cref="M:Microsoft.AspNetCore.Mvc.Abstractions.IActionDescriptorProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptorProviderContext)"/>.\r
201             </summary>\r
202             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptorProviderContext"/>.</param>\r
203         </member>\r
204         <member name="T:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvoker">\r
205             <summary>\r
206             Defines an interface for invoking an MVC action.\r
207             </summary>\r
208             <remarks>\r
209             An <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvoker"/> is created for each request the MVC handles by querying the set of\r
210             <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider"/> instances. See <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider"/> for more information. \r
211             </remarks>\r
212         </member>\r
213         <member name="M:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvoker.InvokeAsync">\r
214             <summary>\r
215             Invokes an MVC action.\r
216             </summary>\r
217             <returns>A <see cref="T:System.Threading.Tasks.Task"/> which will complete when action processing has completed.</returns>\r
218         </member>\r
219         <member name="T:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider">\r
220             <summary>\r
221             Defines an interface for components that can create an <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvoker"/> for the\r
222             current request.\r
223             </summary>\r
224             <remarks>\r
225             <para>\r
226             <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider"/> instances form a pipeline that results in the creation of an\r
227             <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvoker"/>. The <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider"/> instances are ordered by\r
228             an ascending sort of the <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider.Order"/>.  \r
229             </para>\r
230             <para>\r
231             To create an <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvoker"/>, each provider has its <see cref="M:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.Abstractions.ActionInvokerProviderContext)"/> method\r
232             called in sequence and given the same instance of <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionInvokerProviderContext"/>. Then each\r
233             provider has its <see cref="M:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.Abstractions.ActionInvokerProviderContext)"/> method called in the reverse order. The result is\r
234             the value of <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.ActionInvokerProviderContext.Result"/>.  \r
235             </para>\r
236             <para>\r
237             As providers are called in a predefined sequence, each provider has a chance to observe and decorate the\r
238             result of the providers that have already run. \r
239             </para>\r
240             </remarks>\r
241         </member>\r
242         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider.Order">\r
243             <summary>\r
244             Gets the order value for determining the order of execution of providers. Providers execute in\r
245             ascending numeric value of the <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider.Order"/> property.\r
246             </summary>\r
247             <remarks>\r
248             <para>\r
249             Providers are executed in an ordering determined by an ascending sort of the <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider.Order"/> property.\r
250             A provider with a lower numeric value of <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider.Order"/> will have its\r
251             <see cref="M:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.Abstractions.ActionInvokerProviderContext)"/> called before that of a provider with a higher numeric value of\r
252             <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider.Order"/>. The <see cref="M:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.Abstractions.ActionInvokerProviderContext)"/> method is called in the reverse ordering after\r
253             all calls to <see cref="M:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.Abstractions.ActionInvokerProviderContext)"/>. A provider with a lower numeric value of\r
254             <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider.Order"/> will have its <see cref="M:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.Abstractions.ActionInvokerProviderContext)"/> method called after that of a provider\r
255             with a higher numeric value of <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider.Order"/>.\r
256             </para>\r
257             <para>\r
258             If two providers have the same numeric value of <see cref="P:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider.Order"/>, then their relative execution order\r
259             is undefined.\r
260             </para>\r
261             </remarks>\r
262         </member>\r
263         <member name="M:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.Abstractions.ActionInvokerProviderContext)">\r
264             <summary>\r
265             Called to execute the provider. \r
266             </summary>\r
267             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionInvokerProviderContext"/>.</param>\r
268         </member>\r
269         <member name="M:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.Abstractions.ActionInvokerProviderContext)">\r
270             <summary>\r
271             Called to execute the provider, after the <see cref="M:Microsoft.AspNetCore.Mvc.Abstractions.IActionInvokerProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.Abstractions.ActionInvokerProviderContext)"/> methods of all providers,\r
272             have been called.\r
273             </summary>\r
274             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionInvokerProviderContext"/>.</param>\r
275         </member>\r
276         <member name="T:Microsoft.AspNetCore.Mvc.Abstractions.ParameterDescriptor">\r
277             <summary>\r
278             Describes a parameter in an action.\r
279             </summary>\r
280         </member>\r
281         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.ParameterDescriptor.Name">\r
282             <summary>\r
283             Gets or sets the parameter name.\r
284             </summary>\r
285         </member>\r
286         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.ParameterDescriptor.ParameterType">\r
287             <summary>\r
288             Gets or sets the type of the parameter.\r
289             </summary>\r
290         </member>\r
291         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.ParameterDescriptor.BindingInfo">\r
292             <summary>\r
293             Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo"/> for the parameter.\r
294             </summary>\r
295         </member>\r
296         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.Resources.ArgumentCannotBeNullOrEmpty">\r
297             <summary>Value cannot be null or empty.</summary>\r
298         </member>\r
299         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.Resources.ModelBindingContext_ModelMetadataMustBeSet">\r
300             <summary>The ModelMetadata property must be set before accessing this property.</summary>\r
301         </member>\r
302         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.Resources.Validation_InvalidFieldCannotBeReset">\r
303             <summary>A field previously marked invalid should not be marked valid.</summary>\r
304         </member>\r
305         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.Resources.Validation_InvalidFieldCannotBeReset_ToSkipped">\r
306             <summary>A field previously marked invalid should not be marked skipped.</summary>\r
307         </member>\r
308         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.Resources.ModelStateDictionary_MaxModelStateErrors">\r
309             <summary>The maximum number of allowed model errors has been reached.</summary>\r
310         </member>\r
311         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.Resources.BindingSource_Body">\r
312             <summary>Body</summary>\r
313         </member>\r
314         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.Resources.BindingSource_Custom">\r
315             <summary>Custom</summary>\r
316         </member>\r
317         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.Resources.BindingSource_Form">\r
318             <summary>Form</summary>\r
319         </member>\r
320         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.Resources.BindingSource_Header">\r
321             <summary>Header</summary>\r
322         </member>\r
323         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.Resources.BindingSource_Services">\r
324             <summary>Services</summary>\r
325         </member>\r
326         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.Resources.BindingSource_ModelBinding">\r
327             <summary>ModelBinding</summary>\r
328         </member>\r
329         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.Resources.BindingSource_Path">\r
330             <summary>Path</summary>\r
331         </member>\r
332         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.Resources.BindingSource_Query">\r
333             <summary>Query</summary>\r
334         </member>\r
335         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.Resources.BindingSource_CannotBeComposite">\r
336             <summary>The provided binding source '{0}' is a composite. '{1}' requires that the source must represent a single type of input.</summary>\r
337         </member>\r
338         <member name="M:Microsoft.AspNetCore.Mvc.Abstractions.Resources.FormatBindingSource_CannotBeComposite(System.Object,System.Object)">\r
339             <summary>The provided binding source '{0}' is a composite. '{1}' requires that the source must represent a single type of input.</summary>\r
340         </member>\r
341         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.Resources.BindingSource_MustBeFromRequest">\r
342             <summary>The provided binding source '{0}' is not a request-based binding source. '{1}' requires that the source must represent data from an HTTP request.</summary>\r
343         </member>\r
344         <member name="M:Microsoft.AspNetCore.Mvc.Abstractions.Resources.FormatBindingSource_MustBeFromRequest(System.Object,System.Object)">\r
345             <summary>The provided binding source '{0}' is not a request-based binding source. '{1}' requires that the source must represent data from an HTTP request.</summary>\r
346         </member>\r
347         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.Resources.BindingSource_CannotBeGreedy">\r
348             <summary>The provided binding source '{0}' is a greedy data source. '{1}' does not support greedy data sources.</summary>\r
349         </member>\r
350         <member name="M:Microsoft.AspNetCore.Mvc.Abstractions.Resources.FormatBindingSource_CannotBeGreedy(System.Object,System.Object)">\r
351             <summary>The provided binding source '{0}' is a greedy data source. '{1}' does not support greedy data sources.</summary>\r
352         </member>\r
353         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.Resources.BindingSource_MustBeGreedy">\r
354             <summary>The provided binding source '{0}' is not a greedy data source. '{1}' only supports greedy data sources.</summary>\r
355         </member>\r
356         <member name="M:Microsoft.AspNetCore.Mvc.Abstractions.Resources.FormatBindingSource_MustBeGreedy(System.Object,System.Object)">\r
357             <summary>The provided binding source '{0}' is not a greedy data source. '{1}' only supports greedy data sources.</summary>\r
358         </member>\r
359         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.Resources.BindingSource_Special">\r
360             <summary>Special</summary>\r
361         </member>\r
362         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.Resources.BindingSource_FormFile">\r
363             <summary>FormFile</summary>\r
364         </member>\r
365         <member name="P:Microsoft.AspNetCore.Mvc.Abstractions.Resources.BinderType_MustBeIModelBinder">\r
366             <summary>The type '{0}' must implement '{1}' to be used as a model binder.</summary>\r
367         </member>\r
368         <member name="M:Microsoft.AspNetCore.Mvc.Abstractions.Resources.FormatBinderType_MustBeIModelBinder(System.Object,System.Object)">\r
369             <summary>The type '{0}' must implement '{1}' to be used as a model binder.</summary>\r
370         </member>\r
371         <member name="T:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintContext">\r
372             <summary>\r
373             Context for <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraint"/> execution.\r
374             </summary>\r
375         </member>\r
376         <member name="P:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintContext.Candidates">\r
377             <summary>\r
378             The list of <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionSelectorCandidate"/>. This includes all actions that are valid for the current\r
379             request, as well as their constraints.\r
380             </summary>\r
381         </member>\r
382         <member name="P:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintContext.CurrentCandidate">\r
383             <summary>\r
384             The current <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionSelectorCandidate"/>.\r
385             </summary>\r
386         </member>\r
387         <member name="P:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintContext.RouteContext">\r
388             <summary>\r
389             The <see cref="P:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintContext.RouteContext"/>.\r
390             </summary>\r
391         </member>\r
392         <member name="T:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintItem">\r
393             <summary>\r
394             Represents an <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintMetadata"/> with or without a corresponding\r
395             <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraint"/>.\r
396             </summary>\r
397         </member>\r
398         <member name="M:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintItem.#ctor(Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintMetadata)">\r
399             <summary>\r
400             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintItem"/>.\r
401             </summary>\r
402             <param name="metadata">The <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintMetadata"/> instance.</param>\r
403         </member>\r
404         <member name="P:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintItem.Constraint">\r
405             <summary>\r
406             The <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraint"/> associated with <see cref="P:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintItem.Metadata"/>.\r
407             </summary>\r
408         </member>\r
409         <member name="P:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintItem.Metadata">\r
410             <summary>\r
411             The <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintMetadata"/> instance.\r
412             </summary>\r
413         </member>\r
414         <member name="P:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintItem.IsReusable">\r
415             <summary>\r
416             Gets or sets a value indicating whether or not <see cref="P:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintItem.Constraint"/> can be reused across requests.\r
417             </summary>\r
418         </member>\r
419         <member name="T:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintProviderContext">\r
420             <summary>\r
421             Context for an action constraint provider.\r
422             </summary>\r
423         </member>\r
424         <member name="M:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintProviderContext.#ctor(Microsoft.AspNetCore.Http.HttpContext,Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor,System.Collections.Generic.IList{Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintItem})">\r
425             <summary>\r
426             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintProviderContext"/>.\r
427             </summary>\r
428             <param name="context">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the request.</param>\r
429             <param name="action">The <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor"/> for which constraints are being created.</param>\r
430             <param name="items">The list of <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintItem"/> objects.</param>\r
431         </member>\r
432         <member name="P:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintProviderContext.HttpContext">\r
433             <summary>\r
434             The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the request.\r
435             </summary>\r
436         </member>\r
437         <member name="P:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintProviderContext.Action">\r
438             <summary>\r
439             The <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor"/> for which constraints are being created.\r
440             </summary>\r
441         </member>\r
442         <member name="P:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintProviderContext.Results">\r
443             <summary>\r
444             The list of <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintItem"/> objects.\r
445             </summary>\r
446         </member>\r
447         <member name="T:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionSelectorCandidate">\r
448             <summary>\r
449             A candidate action for action selection.\r
450             </summary>\r
451         </member>\r
452         <member name="M:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionSelectorCandidate.#ctor(Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor,System.Collections.Generic.IReadOnlyList{Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraint})">\r
453             <summary>\r
454             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionSelectorCandidate"/>.\r
455             </summary>\r
456             <param name="action">The <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor"/> representing a candidate for selection.</param>\r
457             <param name="constraints">\r
458             The list of <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraint"/> instances associated with <paramref name="action"/>.\r
459             </param>\r
460         </member>\r
461         <member name="P:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionSelectorCandidate.Action">\r
462             <summary>\r
463             The <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor"/> representing a candidate for selection.\r
464             </summary>\r
465         </member>\r
466         <member name="P:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionSelectorCandidate.Constraints">\r
467             <summary>\r
468             The list of <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraint"/> instances associated with <see name="Action"/>.\r
469             </summary>\r
470         </member>\r
471         <member name="T:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraint">\r
472              <summary>\r
473              Supports conditional logic to determine whether or not an associated action is valid to be selected\r
474              for the given request.\r
475              </summary>\r
476              <remarks>\r
477              Action constraints have the secondary effect of making an action with a constraint applied a better\r
478              match than one without.\r
479             \r
480              Consider two actions, 'A' and 'B' with the same action and controller name. Action 'A' only allows the\r
481              HTTP POST method (via a constraint) and action 'B' has no constraints.\r
482             \r
483              If an incoming request is a POST, then 'A' is considered the best match because it both matches and\r
484              has a constraint. If an incoming request uses any other verb, 'A' will not be valid for selection\r
485              due to it's constraint, so 'B' is the best match.\r
486             \r
487             \r
488              Action constraints are also grouped according to their order value. Any constraints with the same\r
489              group value are considered to be part of the same application policy, and will be executed in the\r
490              same stage.\r
491             \r
492              Stages run in ascending order based on the value of <see cref="P:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraint.Order"/>. Given a set of actions which\r
493              are candidates for selection, the next stage to run is the lowest value of <see cref="P:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraint.Order"/> for any\r
494              constraint of any candidate which is greater than the order of the last stage.\r
495             \r
496              Once the stage order is identified, each action has all of its constraints in that stage executed.\r
497              If any constraint does not match, then that action is not a candidate for selection. If any actions\r
498              with constraints in the current state are still candidates, then those are the 'best' actions and this\r
499              process will repeat with the next stage on the set of 'best' actions. If after processing the\r
500              subsequent stages of the 'best' actions no candidates remain, this process will repeat on the set of\r
501              'other' candidate actions from this stage (those without a constraint).\r
502              </remarks>\r
503         </member>\r
504         <member name="P:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraint.Order">\r
505             <summary>\r
506             The constraint order.\r
507             </summary>\r
508             <remarks>\r
509             Constraints are grouped into stages by the value of <see cref="P:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraint.Order"/>. See remarks on\r
510             <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraint"/>.\r
511             </remarks>\r
512         </member>\r
513         <member name="M:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraint.Accept(Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintContext)">\r
514             <summary>\r
515             Determines whether an action is a valid candidate for selection.\r
516             </summary>\r
517             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintContext"/>.</param>\r
518             <returns>True if the action is valid for selection, otherwise false.</returns>\r
519         </member>\r
520         <member name="T:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintFactory">\r
521              <summary>\r
522              A factory for <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraint"/>.\r
523              </summary>\r
524              <remarks>\r
525              <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintFactory"/> will be invoked during action selection\r
526              to create constraint instances for an action.\r
527             \r
528              Place an attribute implementing this interface on a controller or action to insert an action\r
529              constraint created by a factory.\r
530              </remarks>\r
531         </member>\r
532         <member name="P:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintFactory.IsReusable">\r
533             <summary>\r
534             Gets a value that indicates if the result of <see cref="M:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintFactory.CreateInstance(System.IServiceProvider)"/>\r
535             can be reused across requests.\r
536             </summary>\r
537         </member>\r
538         <member name="M:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintFactory.CreateInstance(System.IServiceProvider)">\r
539             <summary>\r
540             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraint"/>.\r
541             </summary>\r
542             <param name="services">The per-request services.</param>\r
543             <returns>An <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraint"/>.</returns>\r
544         </member>\r
545         <member name="T:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintMetadata">\r
546             <summary>\r
547             A marker interface that identifies a type as metadata for an <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraint"/>.\r
548             </summary>\r
549         </member>\r
550         <member name="T:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintProvider">\r
551             <summary>\r
552             Provider for <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraint"/>.\r
553             </summary>\r
554         </member>\r
555         <member name="P:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintProvider.Order">\r
556             <summary>\r
557             Gets the order value for determining the order of execution of providers. Providers execute in\r
558             ascending numeric value of the <see cref="P:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintProvider.Order"/> property.\r
559             </summary>\r
560             <remarks>\r
561             <para>\r
562             Providers are executed in an ordering determined by an ascending sort of the <see cref="P:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintProvider.Order"/> property.\r
563             A provider with a lower numeric value of <see cref="P:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintProvider.Order"/> will have its\r
564             <see cref="M:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintProviderContext)"/> called before that of a provider with a higher numeric value of\r
565             <see cref="P:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintProvider.Order"/>. The <see cref="M:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintProviderContext)"/> method is called in the reverse ordering after\r
566             all calls to <see cref="M:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintProviderContext)"/>. A provider with a lower numeric value of\r
567             <see cref="P:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintProvider.Order"/> will have its <see cref="M:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintProviderContext)"/> method called after that of a provider\r
568             with a higher numeric value of <see cref="P:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintProvider.Order"/>.\r
569             </para>\r
570             <para>\r
571             If two providers have the same numeric value of <see cref="P:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintProvider.Order"/>, then their relative execution order\r
572             is undefined.\r
573             </para>\r
574             </remarks>\r
575         </member>\r
576         <member name="M:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintProviderContext)">\r
577             <summary>\r
578             Called to execute the provider. \r
579             <see cref="P:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintProvider.Order"/> for details on the order of execution of <see cref="M:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintProviderContext)"/>.\r
580             </summary>\r
581             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintProviderContext"/>.</param>\r
582         </member>\r
583         <member name="M:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintProviderContext)">\r
584             <summary>\r
585             Called to execute the provider, after the <see cref="M:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintProviderContext)"/> methods of all providers,\r
586             have been called.\r
587             <see cref="P:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintProvider.Order"/> for details on the order of execution of <see cref="M:Microsoft.AspNetCore.Mvc.ActionConstraints.IActionConstraintProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintProviderContext)"/>.\r
588             </summary>\r
589             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.ActionConstraints.ActionConstraintProviderContext"/>.</param>\r
590         </member>\r
591         <member name="T:Microsoft.AspNetCore.Mvc.ActionContext">\r
592             <summary>\r
593             Context object for execution of action which has been selected as part of an HTTP request.\r
594             </summary>\r
595         </member>\r
596         <member name="M:Microsoft.AspNetCore.Mvc.ActionContext.#ctor">\r
597             <summary>\r
598             Creates an empty <see cref="T:Microsoft.AspNetCore.Mvc.ActionContext"/>.\r
599             </summary>\r
600             <remarks>\r
601             The default constructor is provided for unit test purposes only.\r
602             </remarks>\r
603         </member>\r
604         <member name="M:Microsoft.AspNetCore.Mvc.ActionContext.#ctor(Microsoft.AspNetCore.Mvc.ActionContext)">\r
605             <summary>\r
606             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ActionContext"/>.\r
607             </summary>\r
608             <param name="actionContext">The <see cref="T:Microsoft.AspNetCore.Mvc.ActionContext"/> to copy.</param>\r
609         </member>\r
610         <member name="M:Microsoft.AspNetCore.Mvc.ActionContext.#ctor(Microsoft.AspNetCore.Http.HttpContext,Microsoft.AspNetCore.Routing.RouteData,Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor)">\r
611             <summary>\r
612             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ActionContext"/>.\r
613             </summary>\r
614             <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> for the current request.</param>\r
615             <param name="routeData">The <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> for the current request.</param>\r
616             <param name="actionDescriptor">The <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor"/> for the selected action.</param>\r
617         </member>\r
618         <member name="M:Microsoft.AspNetCore.Mvc.ActionContext.#ctor(Microsoft.AspNetCore.Http.HttpContext,Microsoft.AspNetCore.Routing.RouteData,Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor,Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary)">\r
619             <summary>\r
620             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ActionContext"/>.\r
621             </summary>\r
622             <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> for the current request.</param>\r
623             <param name="routeData">The <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> for the current request.</param>\r
624             <param name="actionDescriptor">The <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor"/> for the selected action.</param>\r
625             <param name="modelState">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>.</param>\r
626         </member>\r
627         <member name="P:Microsoft.AspNetCore.Mvc.ActionContext.ActionDescriptor">\r
628             <summary>\r
629             Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor"/> for the selected action.\r
630             </summary>\r
631             <remarks>\r
632             The property setter is provided for unit test purposes only.\r
633             </remarks>\r
634         </member>\r
635         <member name="P:Microsoft.AspNetCore.Mvc.ActionContext.HttpContext">\r
636             <summary>\r
637             Gets or sets the <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> for the current request.\r
638             </summary>\r
639             <remarks>\r
640             The property setter is provided for unit test purposes only.\r
641             </remarks>\r
642         </member>\r
643         <member name="P:Microsoft.AspNetCore.Mvc.ActionContext.ModelState">\r
644             <summary>\r
645             Gets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>.\r
646             </summary>\r
647         </member>\r
648         <member name="P:Microsoft.AspNetCore.Mvc.ActionContext.RouteData">\r
649             <summary>\r
650             Gets or sets the <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> for the current request.\r
651             </summary>\r
652             <remarks>\r
653             The property setter is provided for unit test purposes only.\r
654             </remarks>\r
655         </member>\r
656         <member name="T:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescription">\r
657             <summary>\r
658             Represents an API exposed by this application.\r
659             </summary>\r
660         </member>\r
661         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescription.ActionDescriptor">\r
662             <summary>\r
663             Gets or sets <see cref="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescription.ActionDescriptor"/> for this api.\r
664             </summary>\r
665         </member>\r
666         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescription.GroupName">\r
667             <summary>\r
668             Gets or sets group name for this api.\r
669             </summary>\r
670         </member>\r
671         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescription.HttpMethod">\r
672             <summary>\r
673             Gets or sets the supported HTTP method for this api, or null if all HTTP methods are supported.\r
674             </summary>\r
675         </member>\r
676         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescription.ParameterDescriptions">\r
677             <summary>\r
678             Gets a list of <see cref="T:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiParameterDescription"/> for this api.\r
679             </summary>\r
680         </member>\r
681         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescription.Properties">\r
682             <summary>\r
683             Gets arbitrary metadata properties associated with the <see cref="T:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescription"/>.\r
684             </summary>\r
685         </member>\r
686         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescription.RelativePath">\r
687             <summary>\r
688             Gets or sets relative url path template (relative to application root) for this api.\r
689             </summary>\r
690         </member>\r
691         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescription.SupportedRequestFormats">\r
692             <summary>\r
693             Gets the list of possible formats for a request.\r
694             </summary>\r
695             <remarks>\r
696             Will be empty if the action does not accept a parameter decorated with the <c>[FromBody]</c> attribute.\r
697             </remarks>\r
698         </member>\r
699         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescription.SupportedResponseTypes">\r
700             <summary>\r
701             Gets the list of possible formats for a response.\r
702             </summary>\r
703             <remarks>\r
704             Will be empty if the action returns no response, or if the response type is unclear. Use\r
705             <c>ProducesAttribute</c> on an action method to specify a response type.\r
706             </remarks>\r
707         </member>\r
708         <member name="T:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescriptionProviderContext">\r
709             <summary>\r
710             A context object for <see cref="T:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescription"/> providers.\r
711             </summary>\r
712         </member>\r
713         <member name="M:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescriptionProviderContext.#ctor(System.Collections.Generic.IReadOnlyList{Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor})">\r
714             <summary>\r
715             Creates a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescriptionProviderContext"/>.\r
716             </summary>\r
717             <param name="actions">The list of actions.</param>\r
718         </member>\r
719         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescriptionProviderContext.Actions">\r
720             <summary>\r
721             The list of actions.\r
722             </summary>\r
723         </member>\r
724         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescriptionProviderContext.Results">\r
725             <summary>\r
726             The list of resulting <see cref="T:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescription"/>.\r
727             </summary>\r
728         </member>\r
729         <member name="T:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiParameterDescription">\r
730             <summary>\r
731             A metadata description of an input to an API.\r
732             </summary>\r
733         </member>\r
734         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiParameterDescription.ModelMetadata">\r
735             <summary>\r
736             Gets or sets the <see cref="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiParameterDescription.ModelMetadata"/>.\r
737             </summary>\r
738         </member>\r
739         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiParameterDescription.Name">\r
740             <summary>\r
741             Gets or sets the name.\r
742             </summary>\r
743         </member>\r
744         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiParameterDescription.RouteInfo">\r
745             <summary>\r
746             Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiParameterRouteInfo"/>.\r
747             </summary>\r
748         </member>\r
749         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiParameterDescription.Source">\r
750             <summary>\r
751             Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource"/>.\r
752             </summary>\r
753         </member>\r
754         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiParameterDescription.Type">\r
755             <summary>\r
756             Gets or sets the parameter type.\r
757             </summary>\r
758         </member>\r
759         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiParameterDescription.ParameterDescriptor">\r
760             <summary>\r
761             Gets or sets the parameter descriptor.\r
762             </summary>\r
763         </member>\r
764         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiParameterDescription.IsRequired">\r
765             <summary>\r
766             Gets or sets a value that determines if the parameter is required.\r
767             </summary>\r
768             <remarks>\r
769             A parameter is considered required if\r
770             <list type="bullet">\r
771             <item>it's bound from the request body (<see cref="F:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.Body"/>).</item>\r
772             <item>it's a required route value.</item>\r
773             <item>it has annotations (e.g. BindRequiredAttribute) that indicate it's required.</item>\r
774             </list>\r
775             </remarks>\r
776         </member>\r
777         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiParameterDescription.DefaultValue">\r
778             <summary>\r
779             Gets or sets the default value for a parameter.\r
780             </summary>\r
781         </member>\r
782         <member name="T:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiParameterRouteInfo">\r
783             <summary>\r
784             A metadata description of routing information for an <see cref="T:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiParameterDescription"/>.\r
785             </summary>\r
786         </member>\r
787         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiParameterRouteInfo.Constraints">\r
788             <summary>\r
789             Gets or sets the set of <see cref="T:Microsoft.AspNetCore.Routing.IRouteConstraint"/> objects for the parameter.\r
790             </summary>\r
791             <remarks>\r
792             Route constraints are only applied when a value is bound from a URL's path. See\r
793             <see cref="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiParameterDescription.Source"/> for the data source considered.\r
794             </remarks>\r
795         </member>\r
796         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiParameterRouteInfo.DefaultValue">\r
797             <summary>\r
798             Gets or sets the default value for the parameter.\r
799             </summary>\r
800         </member>\r
801         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiParameterRouteInfo.IsOptional">\r
802              <summary>\r
803              Gets a value indicating whether not a parameter is considered optional by routing.\r
804              </summary>\r
805              <remarks>\r
806              An optional parameter is considered optional by the routing system. This does not imply\r
807              that the parameter is considered optional by the action.\r
808             \r
809              If the parameter uses <see cref="F:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.ModelBinding"/> for the value of\r
810              <see cref="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiParameterDescription.Source"/> then the value may also come from the\r
811              URL query string or form data.\r
812              </remarks>\r
813         </member>\r
814         <member name="T:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiRequestFormat">\r
815             <summary>\r
816             A possible format for the body of a request.\r
817             </summary>\r
818         </member>\r
819         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiRequestFormat.Formatter">\r
820             <summary>\r
821             The formatter used to read this request.\r
822             </summary>\r
823         </member>\r
824         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiRequestFormat.MediaType">\r
825             <summary>\r
826             The media type of the request.\r
827             </summary>\r
828         </member>\r
829         <member name="T:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiResponseFormat">\r
830             <summary>\r
831             Possible format for an <see cref="T:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiResponseType"/>.\r
832             </summary>\r
833         </member>\r
834         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiResponseFormat.Formatter">\r
835             <summary>\r
836             Gets or sets the formatter used to output this response.\r
837             </summary>\r
838         </member>\r
839         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiResponseFormat.MediaType">\r
840             <summary>\r
841             Gets or sets the media type of the response.\r
842             </summary>\r
843         </member>\r
844         <member name="T:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiResponseType">\r
845             <summary>\r
846             Possible type of the response body which is formatted by <see cref="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiResponseType.ApiResponseFormats"/>.\r
847             </summary>\r
848         </member>\r
849         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiResponseType.ApiResponseFormats">\r
850             <summary>\r
851             Gets or sets the response formats supported by this type.\r
852             </summary>\r
853         </member>\r
854         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiResponseType.ModelMetadata">\r
855             <summary>\r
856             Gets or sets <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> for the <see cref="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiResponseType.Type"/> or null.\r
857             </summary>\r
858             <remarks>\r
859             Will be null if <see cref="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiResponseType.Type"/> is null or void.\r
860             </remarks>\r
861         </member>\r
862         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiResponseType.Type">\r
863             <summary>\r
864             Gets or sets the CLR data type of the response or null.\r
865             </summary>\r
866             <remarks>\r
867             Will be null if the action returns no response, or if the response type is unclear. Use\r
868             <c>Microsoft.AspNetCore.Mvc.ProducesAttribute</c> or <c>Microsoft.AspNetCore.Mvc.ProducesResponseTypeAttribute</c> on an action method\r
869             to specify a response type.\r
870             </remarks>\r
871         </member>\r
872         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiResponseType.StatusCode">\r
873             <summary>\r
874             Gets or sets the HTTP response status code.\r
875             </summary>\r
876         </member>\r
877         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiResponseType.IsDefaultResponse">\r
878             <summary>\r
879             Gets or sets a value indicating whether the response type represents a default response.\r
880             </summary>\r
881             <remarks>\r
882             If an <see cref="T:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescription"/> has a default response, then the <see cref="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiResponseType.StatusCode"/> property should be ignored. This response\r
883             will be used when a more specific response format does not apply. The common use of a default response is to specify the format\r
884             for communicating error conditions.\r
885             </remarks>\r
886         </member>\r
887         <member name="T:Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionProvider">\r
888             <summary>\r
889             Defines a contract for specifying <see cref="T:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescription"/> instances.\r
890             </summary>\r
891             <remarks>\r
892             <para>\r
893             On the first query for <see cref="T:Microsoft.AspNetCore.Mvc.Abstractions.ActionDescriptor"/>, MVC invokes all registered instances of <see cref="T:Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionProvider"/>\r
894             in the ascending sort order of <see cref="P:Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionProvider.Order"/>. \r
895             </para>\r
896             <para>\r
897             Each provider has its <see cref="M:Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescriptionProviderContext)"/> method\r
898             called in sequence and given the same instance of <see cref="T:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescriptionProviderContext"/>. Then each\r
899             provider has its <see cref="M:Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescriptionProviderContext)"/> method called in the reverse order. Each instance has\r
900             an opportunity to add or modify <see cref="P:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescriptionProviderContext.Results"/>.\r
901             </para>\r
902             <para>\r
903             As providers are called in a predefined sequence, each provider has a chance to observe and decorate the\r
904             result of the providers that have already run. \r
905             </para>\r
906             </remarks>\r
907         </member>\r
908         <member name="P:Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionProvider.Order">\r
909             <summary>\r
910             Gets the order value for determining the order of execution of providers. Providers execute in\r
911             ascending numeric value of the <see cref="P:Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionProvider.Order"/> property.\r
912             </summary>\r
913             <remarks>\r
914             <para>\r
915             Providers are executed in an ordering determined by an ascending sort of the <see cref="P:Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionProvider.Order"/> property.\r
916             A provider with a lower numeric value of <see cref="P:Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionProvider.Order"/> will have its\r
917             <see cref="M:Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescriptionProviderContext)"/> called before that of a provider with a higher numeric value of\r
918             <see cref="P:Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionProvider.Order"/>. The <see cref="M:Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescriptionProviderContext)"/> method is called in the reverse ordering after\r
919             all calls to <see cref="M:Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescriptionProviderContext)"/>. A provider with a lower numeric value of\r
920             <see cref="P:Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionProvider.Order"/> will have its <see cref="M:Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescriptionProviderContext)"/> method called after that of a provider\r
921             with a higher numeric value of <see cref="P:Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionProvider.Order"/>.\r
922             </para>\r
923             <para>\r
924             If two providers have the same numeric value of <see cref="P:Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionProvider.Order"/>, then their relative execution order\r
925             is undefined.\r
926             </para>\r
927             </remarks>\r
928         </member>\r
929         <member name="M:Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescriptionProviderContext)">\r
930             <summary>\r
931             Creates or modifies <see cref="T:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescription"/>s.\r
932             </summary>\r
933             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescriptionProviderContext"/>.</param>\r
934         </member>\r
935         <member name="M:Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescriptionProviderContext)">\r
936             <summary>\r
937             Called after <see cref="T:Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionProvider"/> implementations with higher <see cref="P:Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionProvider.Order"/> values have been called.\r
938             </summary>\r
939             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.ApiExplorer.ApiDescriptionProviderContext"/>.</param>\r
940         </member>\r
941         <member name="T:Microsoft.AspNetCore.Mvc.Authorization.IAllowAnonymousFilter">\r
942             <summary>\r
943             A filter that allows anonymous requests, disabling some <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IAuthorizationFilter"/>s.\r
944             </summary>\r
945         </member>\r
946         <member name="T:Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext">\r
947             <summary>\r
948             A context for action filters, specifically <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IActionFilter.OnActionExecuted(Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext)"/> calls.\r
949             </summary>\r
950         </member>\r
951         <member name="M:Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext.#ctor(Microsoft.AspNetCore.Mvc.ActionContext,System.Collections.Generic.IList{Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata},System.Object)">\r
952             <summary>\r
953             Instantiates a new <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext"/> instance.\r
954             </summary>\r
955             <param name="actionContext">The <see cref="T:Microsoft.AspNetCore.Mvc.ActionContext"/>.</param>\r
956             <param name="filters">All applicable <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata"/> implementations.</param>\r
957             <param name="controller">The controller instance containing the action.</param>\r
958         </member>\r
959         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext.Canceled">\r
960             <summary>\r
961             Gets or sets an indication that an action filter short-circuited the action and the action filter pipeline.\r
962             </summary>\r
963         </member>\r
964         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext.Controller">\r
965             <summary>\r
966             Gets the controller instance containing the action.\r
967             </summary>\r
968         </member>\r
969         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext.Exception">\r
970             <summary>\r
971             Gets or sets the <see cref="T:System.Exception"/> caught while executing the action or action filters, if\r
972             any.\r
973             </summary>\r
974         </member>\r
975         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext.ExceptionDispatchInfo">\r
976             <summary>\r
977             Gets or sets the <see cref="T:System.Runtime.ExceptionServices.ExceptionDispatchInfo"/> for the\r
978             <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext.Exception"/>, if an <see cref="T:System.Exception"/> was caught and this information captured.\r
979             </summary>\r
980         </member>\r
981         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext.ExceptionHandled">\r
982             <summary>\r
983             Gets or sets an indication that the <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext.Exception"/> has been handled.\r
984             </summary>\r
985         </member>\r
986         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext.Result">\r
987             <summary>\r
988             Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.IActionResult"/>.\r
989             </summary>\r
990         </member>\r
991         <member name="T:Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext">\r
992             <summary>\r
993             A context for action filters, specifically <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IActionFilter.OnActionExecuted(Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext)"/> and\r
994             <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IAsyncActionFilter.OnActionExecutionAsync(Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext,Microsoft.AspNetCore.Mvc.Filters.ActionExecutionDelegate)"/> calls.\r
995             </summary>\r
996         </member>\r
997         <member name="M:Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext.#ctor(Microsoft.AspNetCore.Mvc.ActionContext,System.Collections.Generic.IList{Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata},System.Collections.Generic.IDictionary{System.String,System.Object},System.Object)">\r
998             <summary>\r
999             Instantiates a new <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext"/> instance.\r
1000             </summary>\r
1001             <param name="actionContext">The <see cref="T:Microsoft.AspNetCore.Mvc.ActionContext"/>.</param>\r
1002             <param name="filters">All applicable <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata"/> implementations.</param>\r
1003             <param name="actionArguments">\r
1004             The arguments to pass when invoking the action. Keys are parameter names.\r
1005             </param>\r
1006             <param name="controller">The controller instance containing the action.</param>\r
1007         </member>\r
1008         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext.Result">\r
1009             <summary>\r
1010             Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.IActionResult"/> to execute. Setting <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext.Result"/> to a non-<c>null</c>\r
1011             value inside an action filter will short-circuit the action and any remaining action filters.\r
1012             </summary>\r
1013         </member>\r
1014         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext.ActionArguments">\r
1015             <summary>\r
1016             Gets the arguments to pass when invoking the action. Keys are parameter names.\r
1017             </summary>\r
1018         </member>\r
1019         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext.Controller">\r
1020             <summary>\r
1021             Gets the controller instance containing the action.\r
1022             </summary>\r
1023         </member>\r
1024         <member name="T:Microsoft.AspNetCore.Mvc.Filters.ActionExecutionDelegate">\r
1025             <summary>\r
1026             A delegate that asynchronously returns an <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext"/> indicating the action or the next\r
1027             action filter has executed.\r
1028             </summary>\r
1029             <returns>\r
1030             A <see cref="T:System.Threading.Tasks.Task"/> that on completion returns an <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext"/>.\r
1031             </returns>\r
1032         </member>\r
1033         <member name="T:Microsoft.AspNetCore.Mvc.Filters.AuthorizationFilterContext">\r
1034             <summary>\r
1035             A context for authorization filters i.e. <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IAuthorizationFilter"/> and\r
1036             <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncAuthorizationFilter"/> implementations.\r
1037             </summary>\r
1038         </member>\r
1039         <member name="M:Microsoft.AspNetCore.Mvc.Filters.AuthorizationFilterContext.#ctor(Microsoft.AspNetCore.Mvc.ActionContext,System.Collections.Generic.IList{Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata})">\r
1040             <summary>\r
1041             Instantiates a new <see cref="T:Microsoft.AspNetCore.Mvc.Filters.AuthorizationFilterContext"/> instance.\r
1042             </summary>\r
1043             <param name="actionContext">The <see cref="T:Microsoft.AspNetCore.Mvc.ActionContext"/>.</param>\r
1044             <param name="filters">All applicable <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata"/> implementations.</param>\r
1045         </member>\r
1046         <member name="P:Microsoft.AspNetCore.Mvc.Filters.AuthorizationFilterContext.Result">\r
1047             <summary>\r
1048             Gets or sets the result of the request. Setting <see cref="P:Microsoft.AspNetCore.Mvc.Filters.AuthorizationFilterContext.Result"/> to a non-<c>null</c> value inside\r
1049             an authorization filter will short-circuit the remainder of the filter pipeline.\r
1050             </summary>\r
1051         </member>\r
1052         <member name="T:Microsoft.AspNetCore.Mvc.Filters.ExceptionContext">\r
1053             <summary>\r
1054             A context for exception filters i.e. <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IExceptionFilter"/> and\r
1055             <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncExceptionFilter"/> implementations.\r
1056             </summary>\r
1057         </member>\r
1058         <member name="M:Microsoft.AspNetCore.Mvc.Filters.ExceptionContext.#ctor(Microsoft.AspNetCore.Mvc.ActionContext,System.Collections.Generic.IList{Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata})">\r
1059             <summary>\r
1060             Instantiates a new <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ExceptionContext"/> instance.\r
1061             </summary>\r
1062             <param name="actionContext">The <see cref="T:Microsoft.AspNetCore.Mvc.ActionContext"/>.</param>\r
1063             <param name="filters">All applicable <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata"/> implementations.</param>\r
1064         </member>\r
1065         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ExceptionContext.Exception">\r
1066             <summary>\r
1067             Gets or sets the <see cref="T:System.Exception"/> caught while executing the action.\r
1068             </summary>\r
1069         </member>\r
1070         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ExceptionContext.ExceptionDispatchInfo">\r
1071             <summary>\r
1072             Gets or sets the <see cref="T:System.Runtime.ExceptionServices.ExceptionDispatchInfo"/> for the\r
1073             <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ExceptionContext.Exception"/>, if this information was captured.\r
1074             </summary>\r
1075         </member>\r
1076         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ExceptionContext.ExceptionHandled">\r
1077             <summary>\r
1078             Gets or sets an indication that the <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ExceptionContext.Exception"/> has been handled.\r
1079             </summary>\r
1080         </member>\r
1081         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ExceptionContext.Result">\r
1082             <summary>\r
1083             Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.IActionResult"/>.\r
1084             </summary>\r
1085         </member>\r
1086         <member name="T:Microsoft.AspNetCore.Mvc.Filters.FilterContext">\r
1087             <summary>\r
1088             An abstract context for filters.\r
1089             </summary>\r
1090         </member>\r
1091         <member name="M:Microsoft.AspNetCore.Mvc.Filters.FilterContext.#ctor(Microsoft.AspNetCore.Mvc.ActionContext,System.Collections.Generic.IList{Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata})">\r
1092             <summary>\r
1093             Instantiates a new <see cref="T:Microsoft.AspNetCore.Mvc.Filters.FilterContext"/> instance.\r
1094             </summary>\r
1095             <param name="actionContext">The <see cref="T:Microsoft.AspNetCore.Mvc.ActionContext"/>.</param>\r
1096             <param name="filters">All applicable <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata"/> implementations.</param>\r
1097         </member>\r
1098         <member name="P:Microsoft.AspNetCore.Mvc.Filters.FilterContext.Filters">\r
1099             <summary>\r
1100             Gets all applicable <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata"/> implementations.\r
1101             </summary>\r
1102         </member>\r
1103         <member name="M:Microsoft.AspNetCore.Mvc.Filters.FilterContext.IsEffectivePolicy``1(``0)">\r
1104             <summary>\r
1105             Returns a value indicating whether the provided <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata"/> is the most effective\r
1106             policy (most specific) applied to the action associated with the <see cref="T:Microsoft.AspNetCore.Mvc.Filters.FilterContext"/>.\r
1107             </summary>\r
1108             <typeparam name="TMetadata">The type of the filter policy.</typeparam>\r
1109             <param name="policy">The filter policy instance.</param>\r
1110             <returns>\r
1111             <c>true</c> if the provided <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata"/> is the most effective policy, otherwise <c>false</c>.\r
1112             </returns>\r
1113             <remarks>\r
1114             <para>\r
1115             The <see cref="M:Microsoft.AspNetCore.Mvc.Filters.FilterContext.IsEffectivePolicy``1(``0)"/> method is used to implement a common convention\r
1116             for filters that define an overriding behavior. When multiple filters may apply to the same \r
1117             cross-cutting concern, define a common interface for the filters (<typeparamref name="TMetadata"/>) and \r
1118             implement the filters such that all of the implementations call this method to determine if they should\r
1119             take action.\r
1120             </para>\r
1121             <para>\r
1122             For instance, a global filter might be overridden by placing a filter attribute on an action method.\r
1123             The policy applied directly to the action method could be considered more specific.\r
1124             </para>\r
1125             <para>\r
1126             This mechanism for overriding relies on the rules of order and scope that the filter system\r
1127             provides to control ordering of filters. It is up to the implementor of filters to implement this \r
1128             protocol cooperatively. The filter system has no innate notion of overrides, this is a recommended\r
1129             convention.\r
1130             </para>\r
1131             </remarks>\r
1132         </member>\r
1133         <member name="M:Microsoft.AspNetCore.Mvc.Filters.FilterContext.FindEffectivePolicy``1">\r
1134             <summary>\r
1135             Returns the most effective (most specific) policy of type <typeparamref name="TMetadata"/> applied to \r
1136             the action associated with the <see cref="T:Microsoft.AspNetCore.Mvc.Filters.FilterContext"/>.\r
1137             </summary>\r
1138             <typeparam name="TMetadata">The type of the filter policy.</typeparam>\r
1139             <returns>The implementation of <typeparamref name="TMetadata"/> applied to the action associated with\r
1140             the <see cref="T:Microsoft.AspNetCore.Mvc.Filters.FilterContext"/>\r
1141             </returns>\r
1142         </member>\r
1143         <member name="T:Microsoft.AspNetCore.Mvc.Filters.FilterDescriptor">\r
1144              <summary>\r
1145              Descriptor for an <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata"/>.\r
1146              </summary>\r
1147              <remarks>\r
1148              <see cref="T:Microsoft.AspNetCore.Mvc.Filters.FilterDescriptor"/> describes an <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata"/> with an order and scope.\r
1149             \r
1150              Order and scope control the execution order of filters. Filters with a higher value of Order execute\r
1151              later in the pipeline.\r
1152             \r
1153              When filters have the same Order, the Scope value is used to determine the order of execution. Filters\r
1154              with a higher value of Scope execute later in the pipeline. See <c>Microsoft.AspNetCore.Mvc.FilterScope</c>\r
1155              for commonly used scopes.\r
1156             \r
1157              For <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IExceptionFilter"/> implementations, the filter runs only after an exception has occurred,\r
1158              and so the observed order of execution will be opposite that of other filters.\r
1159              </remarks>\r
1160         </member>\r
1161         <member name="M:Microsoft.AspNetCore.Mvc.Filters.FilterDescriptor.#ctor(Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata,System.Int32)">\r
1162             <summary>\r
1163             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.Filters.FilterDescriptor"/>.\r
1164             </summary>\r
1165             <param name="filter">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata"/>.</param>\r
1166             <param name="filterScope">The filter scope.</param>\r
1167             <remarks>\r
1168             If the <paramref name="filter"/> implements <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IOrderedFilter"/>, then the value of\r
1169             <see cref="P:Microsoft.AspNetCore.Mvc.Filters.FilterDescriptor.Order"/> will be taken from <see cref="P:Microsoft.AspNetCore.Mvc.Filters.IOrderedFilter.Order"/>. Otherwise the value\r
1170             of <see cref="P:Microsoft.AspNetCore.Mvc.Filters.FilterDescriptor.Order"/> will default to <c>0</c>.\r
1171             </remarks>\r
1172         </member>\r
1173         <member name="P:Microsoft.AspNetCore.Mvc.Filters.FilterDescriptor.Filter">\r
1174             <summary>\r
1175             The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata"/> instance.\r
1176             </summary>\r
1177         </member>\r
1178         <member name="P:Microsoft.AspNetCore.Mvc.Filters.FilterDescriptor.Order">\r
1179             <summary>\r
1180             The filter order.\r
1181             </summary>\r
1182         </member>\r
1183         <member name="P:Microsoft.AspNetCore.Mvc.Filters.FilterDescriptor.Scope">\r
1184             <summary>\r
1185             The filter scope.\r
1186             </summary>\r
1187         </member>\r
1188         <member name="T:Microsoft.AspNetCore.Mvc.Filters.FilterItem">\r
1189             <summary>\r
1190             Used to associate executable filters with <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata"/> instances\r
1191             as part of <see cref="T:Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext"/>. An <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider"/> should\r
1192             inspect <see cref="P:Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext.Results"/> and set <see cref="P:Microsoft.AspNetCore.Mvc.Filters.FilterItem.Filter"/> and\r
1193             <see cref="P:Microsoft.AspNetCore.Mvc.Filters.FilterItem.IsReusable"/> as appropriate.\r
1194             </summary>\r
1195         </member>\r
1196         <member name="M:Microsoft.AspNetCore.Mvc.Filters.FilterItem.#ctor(Microsoft.AspNetCore.Mvc.Filters.FilterDescriptor)">\r
1197             <summary>\r
1198             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.Filters.FilterItem"/>.\r
1199             </summary>\r
1200             <param name="descriptor">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.FilterDescriptor"/>.</param>\r
1201         </member>\r
1202         <member name="M:Microsoft.AspNetCore.Mvc.Filters.FilterItem.#ctor(Microsoft.AspNetCore.Mvc.Filters.FilterDescriptor,Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata)">\r
1203             <summary>\r
1204             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.Filters.FilterItem"/>.\r
1205             </summary>\r
1206             <param name="descriptor">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.FilterDescriptor"/>.</param>\r
1207             <param name="filter"></param>\r
1208         </member>\r
1209         <member name="P:Microsoft.AspNetCore.Mvc.Filters.FilterItem.Descriptor">\r
1210             <summary>\r
1211             Gets the <see cref="T:Microsoft.AspNetCore.Mvc.Filters.FilterDescriptor"/> containing the filter metadata.\r
1212             </summary>\r
1213         </member>\r
1214         <member name="P:Microsoft.AspNetCore.Mvc.Filters.FilterItem.Filter">\r
1215             <summary>\r
1216             Gets or sets the executable <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata"/> associated with <see cref="P:Microsoft.AspNetCore.Mvc.Filters.FilterItem.Descriptor"/>.\r
1217             </summary>\r
1218         </member>\r
1219         <member name="P:Microsoft.AspNetCore.Mvc.Filters.FilterItem.IsReusable">\r
1220             <summary>\r
1221             Gets or sets a value indicating whether or not <see cref="P:Microsoft.AspNetCore.Mvc.Filters.FilterItem.Filter"/> can be reused across requests.\r
1222             </summary>\r
1223         </member>\r
1224         <member name="T:Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext">\r
1225             <summary>\r
1226             A context for filter providers i.e. <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider"/> implementations.\r
1227             </summary>\r
1228         </member>\r
1229         <member name="M:Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext.#ctor(Microsoft.AspNetCore.Mvc.ActionContext,System.Collections.Generic.IList{Microsoft.AspNetCore.Mvc.Filters.FilterItem})">\r
1230             <summary>\r
1231             Instantiates a new <see cref="T:Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext"/> instance.\r
1232             </summary>\r
1233             <param name="actionContext">The <see cref="P:Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext.ActionContext"/>.</param>\r
1234             <param name="items">\r
1235             The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.FilterItem"/>s, initially created from <see cref="T:Microsoft.AspNetCore.Mvc.Filters.FilterDescriptor"/>s or a cache entry.\r
1236             </param>\r
1237         </member>\r
1238         <member name="P:Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext.ActionContext">\r
1239             <summary>\r
1240             Gets or sets the <see cref="P:Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext.ActionContext"/>.\r
1241             </summary>\r
1242         </member>\r
1243         <member name="P:Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext.Results">\r
1244             <summary>\r
1245             Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.Filters.FilterItem"/>s, initially created from <see cref="T:Microsoft.AspNetCore.Mvc.Filters.FilterDescriptor"/>s or a\r
1246             cache entry. <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider"/>s should set <see cref="P:Microsoft.AspNetCore.Mvc.Filters.FilterItem.Filter"/> on existing items or\r
1247             add new <see cref="T:Microsoft.AspNetCore.Mvc.Filters.FilterItem"/>s to make executable filters available.\r
1248             </summary>\r
1249         </member>\r
1250         <member name="T:Microsoft.AspNetCore.Mvc.Filters.IActionFilter">\r
1251             <summary>\r
1252             A filter that surrounds execution of the action.\r
1253             </summary>\r
1254         </member>\r
1255         <member name="M:Microsoft.AspNetCore.Mvc.Filters.IActionFilter.OnActionExecuting(Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext)">\r
1256             <summary>\r
1257             Called before the action executes, after model binding is complete.\r
1258             </summary>\r
1259             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext"/>.</param>\r
1260         </member>\r
1261         <member name="M:Microsoft.AspNetCore.Mvc.Filters.IActionFilter.OnActionExecuted(Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext)">\r
1262             <summary>\r
1263             Called after the action executes, before the action result.\r
1264             </summary>\r
1265             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext"/>.</param>\r
1266         </member>\r
1267         <member name="T:Microsoft.AspNetCore.Mvc.Filters.IAlwaysRunResultFilter">\r
1268             <summary>\r
1269             A filter that surrounds execution of all action results.\r
1270             </summary>\r
1271             <remarks>\r
1272             <para>\r
1273             The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IAlwaysRunResultFilter"/> interface declares an <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IResultFilter"/> implementation\r
1274             that should run for all action results. <seealso cref="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncAlwaysRunResultFilter"/>.\r
1275             </para>\r
1276             <para>\r
1277             <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IResultFilter"/> and <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncResultFilter"/> instances are not executed in cases where\r
1278             an authorization filter or resource filter short-circuits the request to prevent execution of the action.\r
1279             <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IResultFilter"/> and <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncResultFilter"/> implementations\r
1280             are also not executed in cases where an exception filter handles an exception by producing an action result.\r
1281             </para>\r
1282             </remarks>\r
1283         </member>\r
1284         <member name="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncActionFilter">\r
1285             <summary>\r
1286             A filter that asynchronously surrounds execution of the action, after model binding is complete.\r
1287             </summary>\r
1288         </member>\r
1289         <member name="M:Microsoft.AspNetCore.Mvc.Filters.IAsyncActionFilter.OnActionExecutionAsync(Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext,Microsoft.AspNetCore.Mvc.Filters.ActionExecutionDelegate)">\r
1290             <summary>\r
1291             Called asynchronously before the action, after model binding is complete.\r
1292             </summary>\r
1293             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext"/>.</param>\r
1294             <param name="next">\r
1295             The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ActionExecutionDelegate"/>. Invoked to execute the next action filter or the action itself.\r
1296             </param>\r
1297             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion indicates the filter has executed.</returns>\r
1298         </member>\r
1299         <member name="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncAlwaysRunResultFilter">\r
1300             <summary>\r
1301             A filter that asynchronously surrounds execution of all action results.\r
1302             </summary>\r
1303             <remarks>\r
1304             <para>\r
1305             The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncAlwaysRunResultFilter"/> interface declares an <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncResultFilter"/> implementation\r
1306             that should run for all action results. <seealso cref="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncAlwaysRunResultFilter"/>.\r
1307             </para>\r
1308             <para>\r
1309             <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IResultFilter"/> and <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncResultFilter"/> instances are not executed in cases where\r
1310             an authorization filter or resource filter short-circuits the request to prevent execution of the action.\r
1311             <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IResultFilter"/> and <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncResultFilter"/> implementations\r
1312             are also not executed in cases where an exception filter handles an exception by producing an action result.\r
1313             </para>\r
1314             </remarks>\r
1315         </member>\r
1316         <member name="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncAuthorizationFilter">\r
1317             <summary>\r
1318             A filter that asynchronously confirms request authorization.\r
1319             </summary>\r
1320         </member>\r
1321         <member name="M:Microsoft.AspNetCore.Mvc.Filters.IAsyncAuthorizationFilter.OnAuthorizationAsync(Microsoft.AspNetCore.Mvc.Filters.AuthorizationFilterContext)">\r
1322             <summary>\r
1323             Called early in the filter pipeline to confirm request is authorized.\r
1324             </summary>\r
1325             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.AuthorizationFilterContext"/>.</param>\r
1326             <returns>\r
1327             A <see cref="T:System.Threading.Tasks.Task"/> that on completion indicates the filter has executed.\r
1328             </returns>\r
1329         </member>\r
1330         <member name="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncExceptionFilter">\r
1331             <summary>\r
1332             A filter that runs asynchronously after an action has thrown an <see cref="T:System.Exception"/>.\r
1333             </summary>\r
1334         </member>\r
1335         <member name="M:Microsoft.AspNetCore.Mvc.Filters.IAsyncExceptionFilter.OnExceptionAsync(Microsoft.AspNetCore.Mvc.Filters.ExceptionContext)">\r
1336             <summary>\r
1337             Called after an action has thrown an <see cref="T:System.Exception"/>.\r
1338             </summary>\r
1339             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ExceptionContext"/>.</param>\r
1340             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion indicates the filter has executed.</returns>\r
1341         </member>\r
1342         <member name="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncResourceFilter">\r
1343             <summary>\r
1344             A filter that asynchronously surrounds execution of model binding, the action (and filters) and the action\r
1345             result (and filters).\r
1346             </summary>\r
1347         </member>\r
1348         <member name="M:Microsoft.AspNetCore.Mvc.Filters.IAsyncResourceFilter.OnResourceExecutionAsync(Microsoft.AspNetCore.Mvc.Filters.ResourceExecutingContext,Microsoft.AspNetCore.Mvc.Filters.ResourceExecutionDelegate)">\r
1349             <summary>\r
1350             Called asynchronously before the rest of the pipeline.\r
1351             </summary>\r
1352             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutingContext"/>.</param>\r
1353             <param name="next">\r
1354             The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutionDelegate"/>. Invoked to execute the next resource filter or the remainder\r
1355             of the pipeline.\r
1356             </param>\r
1357             <returns>\r
1358             A <see cref="T:System.Threading.Tasks.Task"/> which will complete when the remainder of the pipeline completes.\r
1359             </returns>\r
1360         </member>\r
1361         <member name="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncResultFilter">\r
1362             <summary>\r
1363             A filter that asynchronously surrounds execution of action results successfully returned from an action.\r
1364             </summary>\r
1365             <remarks>\r
1366             <para>\r
1367             <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IResultFilter"/> and <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncResultFilter"/> implementations are executed around the action\r
1368             result only when the action method (or action filters) complete successfully.\r
1369             </para>\r
1370             <para>\r
1371             <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IResultFilter"/> and <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncResultFilter"/> instances are not executed in cases where\r
1372             an authorization filter or resource filter short-circuits the request to prevent execution of the action.\r
1373             <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IResultFilter"/>. <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IResultFilter"/> and <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncResultFilter"/> implementations\r
1374             are also not executed in cases where an exception filter handles an exception by producing an action result.\r
1375             </para>\r
1376             <para>\r
1377             To create a result filter that surrounds the execution of all action results, implement\r
1378             either the <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IAlwaysRunResultFilter"/> or the <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncAlwaysRunResultFilter"/> interface.\r
1379             </para>\r
1380             </remarks>\r
1381         </member>\r
1382         <member name="M:Microsoft.AspNetCore.Mvc.Filters.IAsyncResultFilter.OnResultExecutionAsync(Microsoft.AspNetCore.Mvc.Filters.ResultExecutingContext,Microsoft.AspNetCore.Mvc.Filters.ResultExecutionDelegate)">\r
1383             <summary>\r
1384             Called asynchronously before the action result.\r
1385             </summary>\r
1386             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ResultExecutingContext"/>.</param>\r
1387             <param name="next">\r
1388             The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ResultExecutionDelegate"/>. Invoked to execute the next result filter or the result itself.\r
1389             </param>\r
1390             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion indicates the filter has executed.</returns>\r
1391         </member>\r
1392         <member name="T:Microsoft.AspNetCore.Mvc.Filters.IAuthorizationFilter">\r
1393             <summary>\r
1394             A filter that confirms request authorization.\r
1395             </summary>\r
1396         </member>\r
1397         <member name="M:Microsoft.AspNetCore.Mvc.Filters.IAuthorizationFilter.OnAuthorization(Microsoft.AspNetCore.Mvc.Filters.AuthorizationFilterContext)">\r
1398             <summary>\r
1399             Called early in the filter pipeline to confirm request is authorized.\r
1400             </summary>\r
1401             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.AuthorizationFilterContext"/>.</param>\r
1402         </member>\r
1403         <member name="T:Microsoft.AspNetCore.Mvc.Filters.IExceptionFilter">\r
1404             <summary>\r
1405             A filter that runs after an action has thrown an <see cref="T:System.Exception"/>.\r
1406             </summary>\r
1407         </member>\r
1408         <member name="M:Microsoft.AspNetCore.Mvc.Filters.IExceptionFilter.OnException(Microsoft.AspNetCore.Mvc.Filters.ExceptionContext)">\r
1409             <summary>\r
1410             Called after an action has thrown an <see cref="T:System.Exception"/>.\r
1411             </summary>\r
1412             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ExceptionContext"/>.</param>\r
1413         </member>\r
1414         <member name="T:Microsoft.AspNetCore.Mvc.Filters.IFilterContainer">\r
1415             <summary>\r
1416             A filter that requires a reference back to the <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterFactory"/> that created it.\r
1417             </summary>\r
1418         </member>\r
1419         <member name="P:Microsoft.AspNetCore.Mvc.Filters.IFilterContainer.FilterDefinition">\r
1420             <summary>\r
1421             The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterFactory"/> that created this filter instance.\r
1422             </summary>\r
1423         </member>\r
1424         <member name="T:Microsoft.AspNetCore.Mvc.Filters.IFilterFactory">\r
1425             <summary>\r
1426             An interface for filter metadata which can create an instance of an executable filter.\r
1427             </summary>\r
1428         </member>\r
1429         <member name="P:Microsoft.AspNetCore.Mvc.Filters.IFilterFactory.IsReusable">\r
1430             <summary>\r
1431             Gets a value that indicates if the result of <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IFilterFactory.CreateInstance(System.IServiceProvider)"/>\r
1432             can be reused across requests.\r
1433             </summary>\r
1434         </member>\r
1435         <member name="M:Microsoft.AspNetCore.Mvc.Filters.IFilterFactory.CreateInstance(System.IServiceProvider)">\r
1436             <summary>\r
1437             Creates an instance of the executable filter.\r
1438             </summary>\r
1439             <param name="serviceProvider">The request <see cref="T:System.IServiceProvider"/>.</param>\r
1440             <returns>An instance of the executable filter.</returns>\r
1441         </member>\r
1442         <member name="T:Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata">\r
1443             <summary>\r
1444             Marker interface for filters handled in the MVC request pipeline.\r
1445             </summary>\r
1446         </member>\r
1447         <member name="T:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider">\r
1448             <summary>\r
1449             A <see cref="T:Microsoft.AspNetCore.Mvc.Filters.FilterItem"/> provider. Implementations should update <see cref="P:Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext.Results"/>\r
1450             to make executable filters available.\r
1451             </summary>\r
1452         </member>\r
1453         <member name="P:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider.Order">\r
1454             <summary>\r
1455             Gets the order value for determining the order of execution of providers. Providers execute in\r
1456             ascending numeric value of the <see cref="P:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider.Order"/> property.\r
1457             </summary>\r
1458             <remarks>\r
1459             <para>\r
1460             Providers are executed in an ordering determined by an ascending sort of the <see cref="P:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider.Order"/> property.\r
1461             A provider with a lower numeric value of <see cref="P:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider.Order"/> will have its\r
1462             <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext)"/> called before that of a provider with a higher numeric value of\r
1463             <see cref="P:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider.Order"/>. The <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext)"/> method is called in the reverse ordering after\r
1464             all calls to <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext)"/>. A provider with a lower numeric value of\r
1465             <see cref="P:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider.Order"/> will have its <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext)"/> method called after that of a provider\r
1466             with a higher numeric value of <see cref="P:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider.Order"/>.\r
1467             </para>\r
1468             <para>\r
1469             If two providers have the same numeric value of <see cref="P:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider.Order"/>, then their relative execution order\r
1470             is undefined.\r
1471             </para>\r
1472             </remarks>\r
1473         </member>\r
1474         <member name="M:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider.OnProvidersExecuting(Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext)">\r
1475             <summary>\r
1476             Called in increasing <see cref="P:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider.Order"/>.\r
1477             </summary>\r
1478             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext"/>.</param>\r
1479         </member>\r
1480         <member name="M:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider.OnProvidersExecuted(Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext)">\r
1481             <summary>\r
1482             Called in decreasing <see cref="P:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider.Order"/>, after all <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterProvider"/>s have executed once.\r
1483             </summary>\r
1484             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.FilterProviderContext"/>.</param>\r
1485         </member>\r
1486         <member name="T:Microsoft.AspNetCore.Mvc.Filters.IOrderedFilter">\r
1487             <summary>\r
1488             A filter that specifies the relative order it should run.\r
1489             </summary>\r
1490         </member>\r
1491         <member name="P:Microsoft.AspNetCore.Mvc.Filters.IOrderedFilter.Order">\r
1492             <summary>\r
1493             Gets the order value for determining the order of execution of filters. Filters execute in\r
1494             ascending numeric value of the <see cref="P:Microsoft.AspNetCore.Mvc.Filters.IOrderedFilter.Order"/> property.\r
1495             </summary>\r
1496             <remarks>\r
1497             <para>\r
1498             Filters are executed in an ordering determined by an ascending sort of the <see cref="P:Microsoft.AspNetCore.Mvc.Filters.IOrderedFilter.Order"/> property.\r
1499             </para>\r
1500             <para>\r
1501             Asynchronous filters, such as <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncActionFilter"/>, surround the execution of subsequent\r
1502             filters of the same filter kind. An asynchronous filter with a lower numeric <see cref="P:Microsoft.AspNetCore.Mvc.Filters.IOrderedFilter.Order"/>\r
1503             value will have its filter method, such as <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IAsyncActionFilter.OnActionExecutionAsync(Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext,Microsoft.AspNetCore.Mvc.Filters.ActionExecutionDelegate)"/>,\r
1504             executed before that of a filter with a higher value of <see cref="P:Microsoft.AspNetCore.Mvc.Filters.IOrderedFilter.Order"/>.\r
1505             </para>\r
1506             <para>\r
1507             Synchronous filters, such as <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IActionFilter"/>, have a before-method, such as\r
1508             <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IActionFilter.OnActionExecuting(Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext)"/>, and an after-method, such as\r
1509             <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IActionFilter.OnActionExecuted(Microsoft.AspNetCore.Mvc.Filters.ActionExecutedContext)"/>. A synchronous filter with a lower numeric <see cref="P:Microsoft.AspNetCore.Mvc.Filters.IOrderedFilter.Order"/>\r
1510             value will have its before-method executed before that of a filter with a higher value of\r
1511             <see cref="P:Microsoft.AspNetCore.Mvc.Filters.IOrderedFilter.Order"/>. During the after-stage of the filter, a synchronous filter with a lower\r
1512             numeric <see cref="P:Microsoft.AspNetCore.Mvc.Filters.IOrderedFilter.Order"/> value will have its after-method executed after that of a filter with a higher\r
1513             value of <see cref="P:Microsoft.AspNetCore.Mvc.Filters.IOrderedFilter.Order"/>.\r
1514             </para>\r
1515             <para>\r
1516             If two filters have the same numeric value of <see cref="P:Microsoft.AspNetCore.Mvc.Filters.IOrderedFilter.Order"/>, then their relative execution order\r
1517             is determined by the filter scope.\r
1518             </para>\r
1519             </remarks>\r
1520         </member>\r
1521         <member name="T:Microsoft.AspNetCore.Mvc.Filters.IResourceFilter">\r
1522             <summary>\r
1523             A filter that surrounds execution of model binding, the action (and filters) and the action result\r
1524             (and filters).\r
1525             </summary>\r
1526         </member>\r
1527         <member name="M:Microsoft.AspNetCore.Mvc.Filters.IResourceFilter.OnResourceExecuting(Microsoft.AspNetCore.Mvc.Filters.ResourceExecutingContext)">\r
1528             <summary>\r
1529             Executes the resource filter. Called before execution of the remainder of the pipeline.\r
1530             </summary>\r
1531             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutingContext"/>.</param>\r
1532         </member>\r
1533         <member name="M:Microsoft.AspNetCore.Mvc.Filters.IResourceFilter.OnResourceExecuted(Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext)">\r
1534             <summary>\r
1535             Executes the resource filter. Called after execution of the remainder of the pipeline.\r
1536             </summary>\r
1537             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext"/>.</param>\r
1538         </member>\r
1539         <member name="T:Microsoft.AspNetCore.Mvc.Filters.IResultFilter">\r
1540             <summary>\r
1541             A filter that surrounds execution of action results successfully returned from an action.\r
1542             </summary>\r
1543             <remarks>\r
1544             <para>\r
1545             <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IResultFilter"/> and <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncResultFilter"/> implementations are executed around the action\r
1546             result only when the action method (or action filters) complete successfully.\r
1547             </para>\r
1548             <para>\r
1549             <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IResultFilter"/> and <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncResultFilter"/> instances are not executed in cases where\r
1550             an authorization filter or resource filter short-circuits the request to prevent execution of the action.\r
1551             <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IResultFilter"/>. <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IResultFilter"/> and <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncResultFilter"/> implementations\r
1552             are also not executed in cases where an exception filter handles an exception by producing an action result.\r
1553             </para>\r
1554             <para>\r
1555             To create a result filter that surrounds the execution of all action results, implement\r
1556             either the <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IAlwaysRunResultFilter"/> or the <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IAsyncAlwaysRunResultFilter"/> interface.\r
1557             </para>\r
1558             </remarks>\r
1559         </member>\r
1560         <member name="M:Microsoft.AspNetCore.Mvc.Filters.IResultFilter.OnResultExecuting(Microsoft.AspNetCore.Mvc.Filters.ResultExecutingContext)">\r
1561             <summary>\r
1562             Called before the action result executes.\r
1563             </summary>\r
1564             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ResultExecutingContext"/>.</param>\r
1565         </member>\r
1566         <member name="M:Microsoft.AspNetCore.Mvc.Filters.IResultFilter.OnResultExecuted(Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext)">\r
1567             <summary>\r
1568             Called after the action result executes.\r
1569             </summary>\r
1570             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext"/>.</param>\r
1571         </member>\r
1572         <member name="T:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext">\r
1573             <summary>\r
1574             A context for resource filters, specifically <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IResourceFilter.OnResourceExecuted(Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext)"/> calls.\r
1575             </summary>\r
1576         </member>\r
1577         <member name="M:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext.#ctor(Microsoft.AspNetCore.Mvc.ActionContext,System.Collections.Generic.IList{Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata})">\r
1578             <summary>\r
1579             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext"/>.\r
1580             </summary>\r
1581             <param name="actionContext">The <see cref="T:Microsoft.AspNetCore.Mvc.ActionContext"/>.</param>\r
1582             <param name="filters">The list of <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata"/> instances.</param>\r
1583         </member>\r
1584         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext.Canceled">\r
1585             <summary>\r
1586             Gets or sets a value which indicates whether or not execution was canceled by a resource filter.\r
1587             If true, then a resource filter short-circuited execution by setting\r
1588             <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutingContext.Result"/>.\r
1589             </summary>\r
1590         </member>\r
1591         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext.Exception">\r
1592             <summary>\r
1593             Gets or set the current <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext.Exception"/>.\r
1594             </summary>\r
1595             <remarks>\r
1596             <para>\r
1597             Setting <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext.Exception"/> or <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext.ExceptionDispatchInfo"/> to <c>null</c> will treat\r
1598             the exception as handled, and it will not be rethrown by the runtime.\r
1599             </para>\r
1600             <para>\r
1601             Setting <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext.ExceptionHandled"/> to <c>true</c> will also mark the exception as handled.\r
1602             </para>\r
1603             </remarks>\r
1604         </member>\r
1605         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext.ExceptionDispatchInfo">\r
1606             <summary>\r
1607             Gets or set the current <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext.Exception"/>.\r
1608             </summary>\r
1609             <remarks>\r
1610             <para>\r
1611             Setting <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext.Exception"/> or <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext.ExceptionDispatchInfo"/> to <c>null</c> will treat\r
1612             the exception as handled, and it will not be rethrown by the runtime.\r
1613             </para>\r
1614             <para>\r
1615             Setting <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext.ExceptionHandled"/> to <c>true</c> will also mark the exception as handled.\r
1616             </para>\r
1617             </remarks>\r
1618         </member>\r
1619         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext.ExceptionHandled">\r
1620             <summary>\r
1621             <para>\r
1622             Gets or sets a value indicating whether or not the current <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext.Exception"/> has been handled.\r
1623             </para>\r
1624             <para>\r
1625             If <c>false</c> the <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext.Exception"/> will be rethrown by the runtime after resource filters\r
1626             have executed.\r
1627             </para>\r
1628             </summary>\r
1629         </member>\r
1630         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext.Result">\r
1631             <summary>\r
1632             Gets or sets the result.\r
1633             </summary>\r
1634             <remarks>\r
1635             <para>\r
1636             The <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext.Result"/> may be provided by execution of the action itself or by another\r
1637             filter.\r
1638             </para>\r
1639             <para>\r
1640             The <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext.Result"/> has already been written to the response before being made available\r
1641             to resource filters.\r
1642             </para>\r
1643             </remarks>\r
1644         </member>\r
1645         <member name="T:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutingContext">\r
1646             <summary>\r
1647             A context for resource filters, specifically <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IResourceFilter.OnResourceExecuting(Microsoft.AspNetCore.Mvc.Filters.ResourceExecutingContext)"/> and\r
1648             <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IAsyncResourceFilter.OnResourceExecutionAsync(Microsoft.AspNetCore.Mvc.Filters.ResourceExecutingContext,Microsoft.AspNetCore.Mvc.Filters.ResourceExecutionDelegate)"/> calls.\r
1649             </summary>\r
1650         </member>\r
1651         <member name="M:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutingContext.#ctor(Microsoft.AspNetCore.Mvc.ActionContext,System.Collections.Generic.IList{Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata},System.Collections.Generic.IList{Microsoft.AspNetCore.Mvc.ModelBinding.IValueProviderFactory})">\r
1652             <summary>\r
1653             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutingContext"/>.\r
1654             </summary>\r
1655             <param name="actionContext">The <see cref="T:Microsoft.AspNetCore.Mvc.ActionContext"/>.</param>\r
1656             <param name="filters">The list of <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata"/> instances.</param>\r
1657             <param name="valueProviderFactories">The list of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProviderFactory"/> instances.</param>\r
1658         </member>\r
1659         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutingContext.Result">\r
1660             <summary>\r
1661             Gets or sets the result of the action to be executed.\r
1662             </summary>\r
1663             <remarks>\r
1664             Setting <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutingContext.Result"/> to a non-<c>null</c> value inside a resource filter will\r
1665             short-circuit execution of additional resource filters and the action itself.\r
1666             </remarks>\r
1667         </member>\r
1668         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutingContext.ValueProviderFactories">\r
1669             <summary>\r
1670             Gets the list of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProviderFactory"/> instances used by model binding.\r
1671             </summary>\r
1672         </member>\r
1673         <member name="T:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutionDelegate">\r
1674             <summary>\r
1675             A delegate that asynchronously returns a <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext"/> indicating model binding, the\r
1676             action, the action's result, result filters, and exception filters have executed.\r
1677             </summary>\r
1678             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion returns a <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ResourceExecutedContext"/>.</returns>\r
1679         </member>\r
1680         <member name="T:Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext">\r
1681             <summary>\r
1682             A context for result filters, specifically <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IResultFilter.OnResultExecuted(Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext)"/> calls.\r
1683             </summary>\r
1684         </member>\r
1685         <member name="M:Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext.#ctor(Microsoft.AspNetCore.Mvc.ActionContext,System.Collections.Generic.IList{Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata},Microsoft.AspNetCore.Mvc.IActionResult,System.Object)">\r
1686             <summary>\r
1687             Instantiates a new <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext"/> instance.\r
1688             </summary>\r
1689             <param name="actionContext">The <see cref="T:Microsoft.AspNetCore.Mvc.ActionContext"/>.</param>\r
1690             <param name="filters">All applicable <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata"/> implementations.</param>\r
1691             <param name="result">\r
1692             The <see cref="T:Microsoft.AspNetCore.Mvc.IActionResult"/> copied from <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ResultExecutingContext.Result"/>.\r
1693             </param>\r
1694             <param name="controller">The controller instance containing the action.</param>\r
1695         </member>\r
1696         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext.Canceled">\r
1697             <summary>\r
1698             Gets or sets an indication that a result filter set <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ResultExecutingContext.Cancel"/> to\r
1699             <c>true</c> and short-circuited the filter pipeline.\r
1700             </summary>\r
1701         </member>\r
1702         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext.Controller">\r
1703             <summary>\r
1704             Gets the controller instance containing the action.\r
1705             </summary>\r
1706         </member>\r
1707         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext.Exception">\r
1708             <summary>\r
1709             Gets or sets the <see cref="T:System.Exception"/> caught while executing the result or result filters, if\r
1710             any.\r
1711             </summary>\r
1712         </member>\r
1713         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext.ExceptionDispatchInfo">\r
1714             <summary>\r
1715             Gets or sets the <see cref="T:System.Runtime.ExceptionServices.ExceptionDispatchInfo"/> for the\r
1716             <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext.Exception"/>, if an <see cref="T:System.Exception"/> was caught and this information captured.\r
1717             </summary>\r
1718         </member>\r
1719         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext.ExceptionHandled">\r
1720             <summary>\r
1721             Gets or sets an indication that the <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext.Exception"/> has been handled.\r
1722             </summary>\r
1723         </member>\r
1724         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext.Result">\r
1725             <summary>\r
1726             Gets the <see cref="T:Microsoft.AspNetCore.Mvc.IActionResult"/> copied from <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ResultExecutingContext.Result"/>.\r
1727             </summary>\r
1728         </member>\r
1729         <member name="T:Microsoft.AspNetCore.Mvc.Filters.ResultExecutingContext">\r
1730             <summary>\r
1731             A context for result filters, specifically <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IResultFilter.OnResultExecuting(Microsoft.AspNetCore.Mvc.Filters.ResultExecutingContext)"/> and\r
1732             <see cref="M:Microsoft.AspNetCore.Mvc.Filters.IAsyncResultFilter.OnResultExecutionAsync(Microsoft.AspNetCore.Mvc.Filters.ResultExecutingContext,Microsoft.AspNetCore.Mvc.Filters.ResultExecutionDelegate)"/> calls.\r
1733             </summary>\r
1734         </member>\r
1735         <member name="M:Microsoft.AspNetCore.Mvc.Filters.ResultExecutingContext.#ctor(Microsoft.AspNetCore.Mvc.ActionContext,System.Collections.Generic.IList{Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata},Microsoft.AspNetCore.Mvc.IActionResult,System.Object)">\r
1736             <summary>\r
1737             Instantiates a new <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ResultExecutingContext"/> instance.\r
1738             </summary>\r
1739             <param name="actionContext">The <see cref="T:Microsoft.AspNetCore.Mvc.ActionContext"/>.</param>\r
1740             <param name="filters">All applicable <see cref="T:Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata"/> implementations.</param>\r
1741             <param name="result">The <see cref="T:Microsoft.AspNetCore.Mvc.IActionResult"/> of the action and action filters.</param>\r
1742             <param name="controller">The controller instance containing the action.</param>\r
1743         </member>\r
1744         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ResultExecutingContext.Controller">\r
1745             <summary>\r
1746             Gets the controller instance containing the action.\r
1747             </summary>\r
1748         </member>\r
1749         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ResultExecutingContext.Result">\r
1750             <summary>\r
1751             Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.IActionResult"/> to execute. Setting <see cref="P:Microsoft.AspNetCore.Mvc.Filters.ResultExecutingContext.Result"/> to a non-<c>null</c>\r
1752             value inside a result filter will short-circuit the result and any remaining result filters.\r
1753             </summary>\r
1754         </member>\r
1755         <member name="P:Microsoft.AspNetCore.Mvc.Filters.ResultExecutingContext.Cancel">\r
1756             <summary>\r
1757             Gets or sets an indication the result filter pipeline should be short-circuited.\r
1758             </summary>\r
1759         </member>\r
1760         <member name="T:Microsoft.AspNetCore.Mvc.Filters.ResultExecutionDelegate">\r
1761             <summary>\r
1762             A delegate that asynchronously returns an <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext"/> indicating the action result or\r
1763             the next result filter has executed.\r
1764             </summary>\r
1765             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion returns an <see cref="T:Microsoft.AspNetCore.Mvc.Filters.ResultExecutedContext"/>.</returns>\r
1766         </member>\r
1767         <member name="T:Microsoft.AspNetCore.Mvc.Formatters.FormatterCollection`1">\r
1768             <summary>\r
1769             Represents a collection of formatters.\r
1770             </summary>\r
1771             <typeparam name="TFormatter">The type of formatters in the collection.</typeparam>\r
1772         </member>\r
1773         <member name="M:Microsoft.AspNetCore.Mvc.Formatters.FormatterCollection`1.#ctor">\r
1774             <summary>\r
1775             Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.FormatterCollection`1"/> class that is empty.\r
1776             </summary>\r
1777         </member>\r
1778         <member name="M:Microsoft.AspNetCore.Mvc.Formatters.FormatterCollection`1.#ctor(System.Collections.Generic.IList{`0})">\r
1779             <summary>\r
1780             Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.FormatterCollection`1"/> class\r
1781             as a wrapper for the specified list.\r
1782             </summary>\r
1783             <param name="list">The list that is wrapped by the new collection.</param>\r
1784         </member>\r
1785         <member name="M:Microsoft.AspNetCore.Mvc.Formatters.FormatterCollection`1.RemoveType``1">\r
1786             <summary>\r
1787             Removes all formatters of the specified type.\r
1788             </summary>\r
1789             <typeparam name="T">The type to remove.</typeparam>\r
1790         </member>\r
1791         <member name="M:Microsoft.AspNetCore.Mvc.Formatters.FormatterCollection`1.RemoveType(System.Type)">\r
1792             <summary>\r
1793             Removes all formatters of the specified type.\r
1794             </summary>\r
1795             <param name="formatterType">The type to remove.</param>\r
1796         </member>\r
1797         <member name="T:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter">\r
1798             <summary>\r
1799             Reads an object from the request body.\r
1800             </summary>\r
1801         </member>\r
1802         <member name="M:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter.CanRead(Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext)">\r
1803             <summary>\r
1804             Determines whether this <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter"/> can deserialize an object of the\r
1805             <paramref name="context"/>'s <see cref="P:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext.ModelType"/>.\r
1806             </summary>\r
1807             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext"/>.</param>\r
1808             <returns>\r
1809             <c>true</c> if this <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter"/> can deserialize an object of the\r
1810             <paramref name="context"/>'s <see cref="P:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext.ModelType"/>. <c>false</c> otherwise.\r
1811             </returns>\r
1812         </member>\r
1813         <member name="M:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter.ReadAsync(Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext)">\r
1814             <summary>\r
1815             Reads an object from the request body.\r
1816             </summary>\r
1817             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext"/>.</param>\r
1818             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that on completion deserializes the request body.</returns>\r
1819         </member>\r
1820         <member name="T:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatterExceptionPolicy">\r
1821             <summary>\r
1822             A policy which <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter"/>s can implement to indicate if they want the body model binder\r
1823             to handle all exceptions. By default, all default <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter"/>s implement this interface and\r
1824             have a default value of <see cref="F:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterExceptionPolicy.MalformedInputExceptions"/>.\r
1825             </summary>\r
1826         </member>\r
1827         <member name="P:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatterExceptionPolicy.ExceptionPolicy">\r
1828             <summary>\r
1829             Gets the flag to indicate if the body model binder should handle all exceptions. If an exception is handled,\r
1830             the body model binder converts the exception into model state errors, else the exception is allowed to propagate.\r
1831             </summary>\r
1832         </member>\r
1833         <member name="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext">\r
1834             <summary>\r
1835             A context object used by an input formatter for deserializing the request body into an object.\r
1836             </summary>\r
1837         </member>\r
1838         <member name="M:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext.#ctor(Microsoft.AspNetCore.Http.HttpContext,System.String,Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary,Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata,System.Func{System.IO.Stream,System.Text.Encoding,System.IO.TextReader})">\r
1839             <summary>\r
1840             Creates a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext"/>.\r
1841             </summary>\r
1842             <param name="httpContext">\r
1843             The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> for the current operation.\r
1844             </param>\r
1845             <param name="modelName">The name of the model.</param>\r
1846             <param name="modelState">\r
1847             The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/> for recording errors.\r
1848             </param>\r
1849             <param name="metadata">\r
1850             The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> of the model to deserialize.\r
1851             </param>\r
1852             <param name="readerFactory">\r
1853             A delegate which can create a <see cref="T:System.IO.TextReader"/> for the request body.\r
1854             </param>\r
1855         </member>\r
1856         <member name="M:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext.#ctor(Microsoft.AspNetCore.Http.HttpContext,System.String,Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary,Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata,System.Func{System.IO.Stream,System.Text.Encoding,System.IO.TextReader},System.Boolean)">\r
1857             <summary>\r
1858             Creates a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext"/>.\r
1859             </summary>\r
1860             <param name="httpContext">\r
1861             The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> for the current operation.\r
1862             </param>\r
1863             <param name="modelName">The name of the model.</param>\r
1864             <param name="modelState">\r
1865             The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/> for recording errors.\r
1866             </param>\r
1867             <param name="metadata">\r
1868             The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> of the model to deserialize.\r
1869             </param>\r
1870             <param name="readerFactory">\r
1871             A delegate which can create a <see cref="T:System.IO.TextReader"/> for the request body.\r
1872             </param>\r
1873             <param name="treatEmptyInputAsDefaultValue">\r
1874             A value for the <see cref="P:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext.TreatEmptyInputAsDefaultValue"/> property.\r
1875             </param>\r
1876         </member>\r
1877         <member name="P:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext.TreatEmptyInputAsDefaultValue">\r
1878             <summary>\r
1879             Gets a flag to indicate whether the input formatter should allow no value to be provided.\r
1880             If <see langword="false"/>, the input formatter should handle empty input by returning\r
1881             <see cref="M:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult.NoValueAsync"/>. If <see langword="true"/>, the input\r
1882             formatter should handle empty input by returning the default value for the type\r
1883             <see cref="P:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext.ModelType"/>.\r
1884             </summary>\r
1885         </member>\r
1886         <member name="P:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext.HttpContext">\r
1887             <summary>\r
1888             Gets the <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current operation.\r
1889             </summary>\r
1890         </member>\r
1891         <member name="P:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext.ModelName">\r
1892             <summary>\r
1893             Gets the name of the model. Used as the key or key prefix for errors added to <see cref="P:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext.ModelState"/>.\r
1894             </summary>\r
1895         </member>\r
1896         <member name="P:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext.ModelState">\r
1897             <summary>\r
1898             Gets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/> associated with the current operation.\r
1899             </summary>\r
1900         </member>\r
1901         <member name="P:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext.Metadata">\r
1902             <summary>\r
1903             Gets the requested <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> of the request body deserialization.\r
1904             </summary>\r
1905         </member>\r
1906         <member name="P:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext.ModelType">\r
1907             <summary>\r
1908             Gets the requested <see cref="T:System.Type"/> of the request body deserialization.\r
1909             </summary>\r
1910         </member>\r
1911         <member name="P:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext.ReaderFactory">\r
1912             <summary>\r
1913             Gets a delegate which can create a <see cref="T:System.IO.TextReader"/> for the request body.\r
1914             </summary>\r
1915         </member>\r
1916         <member name="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterException">\r
1917             <summary>\r
1918             Exception thrown by <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter"/> when the input is not in an expected format.\r
1919             </summary>\r
1920         </member>\r
1921         <member name="M:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterException.#ctor">\r
1922             <summary>\r
1923             Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterException"/>.\r
1924             </summary>\r
1925         </member>\r
1926         <member name="M:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterException.#ctor(System.String)">\r
1927             <summary>\r
1928             Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterException"/> with the specified <paramref name="message"/>.\r
1929             </summary>\r
1930             <param name="message">The exception message.</param>\r
1931         </member>\r
1932         <member name="M:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterException.#ctor(System.String,System.Exception)">\r
1933             <summary>\r
1934             Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterException"/> with the specified <paramref name="message"/> and\r
1935             inner exception that is the cause of this exception.\r
1936             </summary>\r
1937             <param name="message">The exception message.</param>\r
1938             <param name="innerException">The exception that is the cause of the current exception.</param>\r
1939         </member>\r
1940         <member name="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterExceptionPolicy">\r
1941             <summary>\r
1942             Defines the set of policies that determine how the model binding system interprets exceptions\r
1943             thrown by an <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter"/>. <seealso cref="T:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatterExceptionPolicy"/>\r
1944             </summary>\r
1945             <remarks>\r
1946             <para>\r
1947             An <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter"/> could throw an exception for several reasons, including:\r
1948             <list type="bullet">\r
1949             <item><description>malformed input</description></item>\r
1950             <item><description>client disconnect or other I/O problem</description></item>\r
1951             <item><description>\r
1952             application configuration problems such as <see cref="T:System.TypeLoadException"/>\r
1953             </description></item>\r
1954             </list>\r
1955             </para>\r
1956             <para>\r
1957             The policy associated with <see cref="F:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterExceptionPolicy.AllExceptions"/> treats\r
1958             all such categories of problems as model state errors, and usually will be reported to the client as\r
1959             an HTTP 400. This was the only policy supported by model binding in ASP.NET Core MVC 1.0, 1.1, and 2.0\r
1960             and is still the default for historical reasons.\r
1961             </para>\r
1962             <para>\r
1963             The policy associated with <see cref="F:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterExceptionPolicy.MalformedInputExceptions"/>\r
1964             treats only <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterException"/> and its subclasses as model state errors. This means that\r
1965             exceptions that are not related to the content of the HTTP request (such as a disconnect) will be re-thrown,\r
1966             which by default would cause an HTTP 500 response, unless there is exception-handling middleware enabled.\r
1967             </para>\r
1968             </remarks>\r
1969         </member>\r
1970         <member name="F:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterExceptionPolicy.AllExceptions">\r
1971             <summary>\r
1972             This value indicates that all exceptions thrown by an <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter"/> will be treated\r
1973             as model state errors.\r
1974             </summary>\r
1975         </member>\r
1976         <member name="F:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterExceptionPolicy.MalformedInputExceptions">\r
1977             <summary>\r
1978             This value indicates that only <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterException"/> and subclasses will be treated\r
1979             as model state errors. All other exceptions types will be re-thrown and can be handled by a higher\r
1980             level exception handler, such as exception-handling middleware.\r
1981             </summary>\r
1982         </member>\r
1983         <member name="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult">\r
1984             <summary>\r
1985             Result of a <see cref="M:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter.ReadAsync(Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext)"/> operation.\r
1986             </summary>\r
1987         </member>\r
1988         <member name="P:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult.HasError">\r
1989             <summary>\r
1990             Gets an indication whether the <see cref="M:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter.ReadAsync(Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext)"/> operation had an error.\r
1991             </summary>\r
1992         </member>\r
1993         <member name="P:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult.IsModelSet">\r
1994             <summary>\r
1995             Gets an indication whether a value for the <see cref="P:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult.Model"/> property was supplied.\r
1996             </summary>\r
1997         </member>\r
1998         <member name="P:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult.Model">\r
1999             <summary>\r
2000             Gets the deserialized <see cref="T:System.Object"/>.\r
2001             </summary>\r
2002             <value>\r
2003             <c>null</c> if <see cref="P:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult.HasError"/> is <c>true</c>.\r
2004             </value>\r
2005         </member>\r
2006         <member name="M:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult.Failure">\r
2007             <summary>\r
2008             Returns an <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult"/> indicating the <see cref="M:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter.ReadAsync(Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext)"/>\r
2009             operation failed.\r
2010             </summary>\r
2011             <returns>\r
2012             An <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult"/> indicating the <see cref="M:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter.ReadAsync(Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext)"/>\r
2013             operation failed i.e. with <see cref="P:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult.HasError"/> <c>true</c>.\r
2014             </returns>\r
2015         </member>\r
2016         <member name="M:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult.FailureAsync">\r
2017             <summary>\r
2018             Returns a <see cref="T:System.Threading.Tasks.Task"/> that on completion provides an <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult"/> indicating\r
2019             the <see cref="M:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter.ReadAsync(Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext)"/> operation failed.\r
2020             </summary>\r
2021             <returns>\r
2022             A <see cref="T:System.Threading.Tasks.Task"/> that on completion provides an <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult"/> indicating the\r
2023             <see cref="M:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter.ReadAsync(Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext)"/> operation failed i.e. with <see cref="P:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult.HasError"/> <c>true</c>.\r
2024             </returns>\r
2025         </member>\r
2026         <member name="M:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult.Success(System.Object)">\r
2027             <summary>\r
2028             Returns an <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult"/> indicating the <see cref="M:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter.ReadAsync(Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext)"/>\r
2029             operation was successful.\r
2030             </summary>\r
2031             <param name="model">The deserialized <see cref="T:System.Object"/>.</param>\r
2032             <returns>\r
2033             An <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult"/> indicating the <see cref="M:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter.ReadAsync(Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext)"/>\r
2034             operation succeeded i.e. with <see cref="P:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult.HasError"/> <c>false</c>.\r
2035             </returns>\r
2036         </member>\r
2037         <member name="M:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult.SuccessAsync(System.Object)">\r
2038             <summary>\r
2039             Returns a <see cref="T:System.Threading.Tasks.Task"/> that on completion provides an <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult"/> indicating\r
2040             the <see cref="M:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter.ReadAsync(Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext)"/> operation was successful.\r
2041             </summary>\r
2042             <param name="model">The deserialized <see cref="T:System.Object"/>.</param>\r
2043             <returns>\r
2044             A <see cref="T:System.Threading.Tasks.Task"/> that on completion provides an <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult"/> indicating the\r
2045             <see cref="M:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter.ReadAsync(Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext)"/> operation succeeded i.e. with <see cref="P:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult.HasError"/> <c>false</c>.\r
2046             </returns>\r
2047         </member>\r
2048         <member name="M:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult.NoValue">\r
2049             <summary>\r
2050             Returns an <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult"/> indicating the <see cref="M:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter.ReadAsync(Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext)"/>\r
2051             operation produced no value.\r
2052             </summary>\r
2053             <returns>\r
2054             An <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult"/> indicating the <see cref="M:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter.ReadAsync(Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext)"/>\r
2055             operation produced no value.\r
2056             </returns>\r
2057         </member>\r
2058         <member name="M:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult.NoValueAsync">\r
2059             <summary>\r
2060             Returns a <see cref="T:System.Threading.Tasks.Task"/> that on completion provides an <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult"/> indicating\r
2061             the <see cref="M:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter.ReadAsync(Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext)"/> operation produced no value.\r
2062             </summary>\r
2063             <returns>\r
2064             A <see cref="T:System.Threading.Tasks.Task"/> that on completion provides an <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.InputFormatterResult"/> indicating the\r
2065             <see cref="M:Microsoft.AspNetCore.Mvc.Formatters.IInputFormatter.ReadAsync(Microsoft.AspNetCore.Mvc.Formatters.InputFormatterContext)"/> operation produced no value.\r
2066             </returns>\r
2067         </member>\r
2068         <member name="T:Microsoft.AspNetCore.Mvc.Formatters.IOutputFormatter">\r
2069             <summary>\r
2070             Writes an object to the output stream.\r
2071             </summary>\r
2072         </member>\r
2073         <member name="M:Microsoft.AspNetCore.Mvc.Formatters.IOutputFormatter.CanWriteResult(Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterCanWriteContext)">\r
2074             <summary>\r
2075             Determines whether this <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.IOutputFormatter"/> can serialize\r
2076             an object of the specified type.\r
2077             </summary>\r
2078             <param name="context">The formatter context associated with the call.</param>\r
2079             <returns>Returns <c>true</c> if the formatter can write the response; <c>false</c> otherwise.</returns>\r
2080         </member>\r
2081         <member name="M:Microsoft.AspNetCore.Mvc.Formatters.IOutputFormatter.WriteAsync(Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterWriteContext)">\r
2082             <summary>\r
2083             Writes the object represented by <paramref name="context"/>'s Object property.\r
2084             </summary>\r
2085             <param name="context">The formatter context associated with the call.</param>\r
2086             <returns>A Task that serializes the value to the <paramref name="context"/>'s response message.</returns>\r
2087         </member>\r
2088         <member name="T:Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterCanWriteContext">\r
2089             <summary>\r
2090             A context object for <see cref="M:Microsoft.AspNetCore.Mvc.Formatters.IOutputFormatter.CanWriteResult(Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterCanWriteContext)"/>.\r
2091             </summary>\r
2092         </member>\r
2093         <member name="M:Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterCanWriteContext.#ctor(Microsoft.AspNetCore.Http.HttpContext)">\r
2094             <summary>\r
2095             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterCanWriteContext"/>.\r
2096             </summary>\r
2097             <param name="httpContext">The <see cref="P:Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterCanWriteContext.HttpContext"/> for the current request.</param>\r
2098         </member>\r
2099         <member name="P:Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterCanWriteContext.HttpContext">\r
2100             <summary>\r
2101             Gets or sets the <see cref="P:Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterCanWriteContext.HttpContext"/> context associated with the current operation.\r
2102             </summary>\r
2103         </member>\r
2104         <member name="P:Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterCanWriteContext.ContentType">\r
2105             <summary>\r
2106             Gets or sets the content type to write to the response.\r
2107             </summary>\r
2108             <remarks>\r
2109             An <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.IOutputFormatter"/> can set this value when its\r
2110             <see cref="M:Microsoft.AspNetCore.Mvc.Formatters.IOutputFormatter.CanWriteResult(Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterCanWriteContext)"/> method is called,\r
2111             and expect to see the same value provided in\r
2112             <see cref="M:Microsoft.AspNetCore.Mvc.Formatters.IOutputFormatter.WriteAsync(Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterWriteContext)"/>\r
2113             </remarks>\r
2114         </member>\r
2115         <member name="P:Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterCanWriteContext.ContentTypeIsServerDefined">\r
2116             <summary>\r
2117             Gets or sets a value to indicate whether the content type was specified by server-side code.\r
2118             This allows <see cref="M:Microsoft.AspNetCore.Mvc.Formatters.IOutputFormatter.CanWriteResult(Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterCanWriteContext)"/> to\r
2119             implement stricter filtering on content types that, for example, are being considered purely\r
2120             because of an incoming Accept header.\r
2121             </summary>\r
2122         </member>\r
2123         <member name="P:Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterCanWriteContext.Object">\r
2124             <summary>\r
2125             Gets or sets the object to write to the response.\r
2126             </summary>\r
2127         </member>\r
2128         <member name="P:Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterCanWriteContext.ObjectType">\r
2129             <summary>\r
2130             Gets or sets the <see cref="T:System.Type"/> of the object to write to the response.\r
2131             </summary>\r
2132         </member>\r
2133         <member name="T:Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterWriteContext">\r
2134             <summary>\r
2135             A context object for <see cref="M:Microsoft.AspNetCore.Mvc.Formatters.IOutputFormatter.WriteAsync(Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterWriteContext)"/>.\r
2136             </summary>\r
2137         </member>\r
2138         <member name="M:Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterWriteContext.#ctor(Microsoft.AspNetCore.Http.HttpContext,System.Func{System.IO.Stream,System.Text.Encoding,System.IO.TextWriter},System.Type,System.Object)">\r
2139             <summary>\r
2140             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterWriteContext"/>.\r
2141             </summary>\r
2142             <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> for the current request.</param>\r
2143             <param name="writerFactory">The delegate used to create a <see cref="T:System.IO.TextWriter"/> for writing the response.</param>\r
2144             <param name="objectType">The <see cref="T:System.Type"/> of the object to write to the response.</param>\r
2145             <param name="object">The object to write to the response.</param>\r
2146         </member>\r
2147         <member name="P:Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterWriteContext.WriterFactory">\r
2148             <summary>\r
2149             <para>\r
2150             Gets or sets a delegate used to create a <see cref="T:System.IO.TextWriter"/> for writing text to the response.\r
2151             </para>\r
2152             <para>\r
2153             Write to <see cref="P:Microsoft.AspNetCore.Http.HttpResponse.Body"/> directly to write binary data to the response.\r
2154             </para>\r
2155             </summary>\r
2156             <remarks>\r
2157             <para>\r
2158             The <see cref="T:System.IO.TextWriter"/> created by this delegate will encode text and write to the\r
2159             <see cref="P:Microsoft.AspNetCore.Http.HttpResponse.Body"/> stream. Call this delegate to create a <see cref="T:System.IO.TextWriter"/>\r
2160             for writing text output to the response stream.\r
2161             </para>\r
2162             <para>\r
2163             To implement a formatter that writes binary data to the response stream, do not use the\r
2164             <see cref="P:Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterWriteContext.WriterFactory"/> delegate, and use <see cref="P:Microsoft.AspNetCore.Http.HttpResponse.Body"/> instead.\r
2165             </para>\r
2166             </remarks>\r
2167         </member>\r
2168         <member name="T:Microsoft.AspNetCore.Mvc.IActionResult">\r
2169             <summary>\r
2170             Defines a contract that represents the result of an action method.\r
2171             </summary>\r
2172         </member>\r
2173         <member name="M:Microsoft.AspNetCore.Mvc.IActionResult.ExecuteResultAsync(Microsoft.AspNetCore.Mvc.ActionContext)">\r
2174             <summary>\r
2175             Executes the result operation of the action method asynchronously. This method is called by MVC to process\r
2176             the result of an action method.\r
2177             </summary>\r
2178             <param name="context">The context in which the result is executed. The context information includes\r
2179             information about the action that was executed and request information.</param>\r
2180             <returns>A task that represents the asynchronous execute operation.</returns>\r
2181         </member>\r
2182         <member name="T:Microsoft.AspNetCore.Mvc.IUrlHelper">\r
2183             <summary>\r
2184             Defines the contract for the helper to build URLs for ASP.NET MVC within an application.\r
2185             </summary>\r
2186         </member>\r
2187         <member name="P:Microsoft.AspNetCore.Mvc.IUrlHelper.ActionContext">\r
2188             <summary>\r
2189             Gets the <see cref="P:Microsoft.AspNetCore.Mvc.IUrlHelper.ActionContext"/> for the current request.\r
2190             </summary>\r
2191         </member>\r
2192         <member name="M:Microsoft.AspNetCore.Mvc.IUrlHelper.Action(Microsoft.AspNetCore.Mvc.Routing.UrlActionContext)">\r
2193             <summary>\r
2194             Generates a URL with an absolute path for an action method, which contains the action\r
2195             name, controller name, route values, protocol to use, host name, and fragment specified by\r
2196             <see cref="T:Microsoft.AspNetCore.Mvc.Routing.UrlActionContext"/>. Generates an absolute URL if <see cref="P:Microsoft.AspNetCore.Mvc.Routing.UrlActionContext.Protocol"/> and\r
2197             <see cref="P:Microsoft.AspNetCore.Mvc.Routing.UrlActionContext.Host"/> are non-<c>null</c>. See the remarks section for important security information.\r
2198             </summary>\r
2199             <param name="actionContext">The context object for the generated URLs for an action method.</param>\r
2200             <returns>The generated URL.</returns>\r
2201             <remarks>\r
2202             <para>\r
2203             The value of <see cref="P:Microsoft.AspNetCore.Mvc.Routing.UrlActionContext.Host" /> should be a trusted value. Relying on the value of the current request\r
2204             can allow untrusted input to influence the resulting URI unless the <c>Host</c> header has been validated.\r
2205             See the deployment documentation for instructions on how to properly validate the <c>Host</c> header in\r
2206             your deployment environment.\r
2207             </para>\r
2208             </remarks>\r
2209         </member>\r
2210         <member name="M:Microsoft.AspNetCore.Mvc.IUrlHelper.Content(System.String)">\r
2211             <summary>\r
2212             Converts a virtual (relative, starting with ~/) path to an application absolute path.\r
2213             </summary>\r
2214             <remarks>\r
2215             If the specified content path does not start with the tilde (~) character,\r
2216             this method returns <paramref name="contentPath"/> unchanged.\r
2217             </remarks>\r
2218             <param name="contentPath">The virtual path of the content.</param>\r
2219             <returns>The application absolute path.</returns>\r
2220         </member>\r
2221         <member name="M:Microsoft.AspNetCore.Mvc.IUrlHelper.IsLocalUrl(System.String)">\r
2222             <summary>\r
2223             Returns a value that indicates whether the URL is local. A URL is considered local if it does not have a\r
2224             host / authority part and it has an absolute path. URLs using virtual paths ('~/') are also local.\r
2225             </summary>\r
2226             <param name="url">The URL.</param>\r
2227             <returns><c>true</c> if the URL is local; otherwise, <c>false</c>.</returns>\r
2228             <example>\r
2229             <para>\r
2230             For example, the following URLs are considered local:\r
2231             <code>\r
2232             /Views/Default/Index.html\r
2233             ~/Index.html\r
2234             </code>\r
2235             </para>\r
2236             <para>\r
2237             The following URLs are non-local:\r
2238             <code>\r
2239             ../Index.html\r
2240             http://www.contoso.com/\r
2241             http://localhost/Index.html\r
2242             </code>\r
2243             </para>\r
2244             </example>\r
2245         </member>\r
2246         <member name="M:Microsoft.AspNetCore.Mvc.IUrlHelper.RouteUrl(Microsoft.AspNetCore.Mvc.Routing.UrlRouteContext)">\r
2247             <summary>\r
2248             Generates a URL with an absolute path, which contains the route name, route values, protocol to use, host\r
2249             name, and fragment specified by <see cref="T:Microsoft.AspNetCore.Mvc.Routing.UrlRouteContext"/>. Generates an absolute URL if\r
2250             <see cref="P:Microsoft.AspNetCore.Mvc.Routing.UrlActionContext.Protocol"/> and <see cref="P:Microsoft.AspNetCore.Mvc.Routing.UrlActionContext.Host"/> are non-<c>null</c>.\r
2251             See the remarks section for important security information.\r
2252             </summary>\r
2253             <param name="routeContext">The context object for the generated URLs for a route.</param>\r
2254             <returns>The generated URL.</returns>\r
2255             <remarks>\r
2256             <para>\r
2257             The value of <see cref="P:Microsoft.AspNetCore.Mvc.Routing.UrlRouteContext.Host" /> should be a trusted value. Relying on the value of the current request\r
2258             can allow untrusted input to influence the resulting URI unless the <c>Host</c> header has been validated.\r
2259             See the deployment documentation for instructions on how to properly validate the <c>Host</c> header in\r
2260             your deployment environment.\r
2261             </para>\r
2262             </remarks>\r
2263         </member>\r
2264         <member name="M:Microsoft.AspNetCore.Mvc.IUrlHelper.Link(System.String,System.Object)">\r
2265             <summary>\r
2266             Generates an absolute URL for the specified <paramref name="routeName"/> and route\r
2267             <paramref name="values"/>, which contains the protocol (such as "http" or "https") and host name from the\r
2268             current request. See the remarks section for important security information.\r
2269             </summary>\r
2270             <param name="routeName">The name of the route that is used to generate URL.</param>\r
2271             <param name="values">An object that contains route values.</param>\r
2272             <returns>The generated absolute URL.</returns>\r
2273             <remarks>\r
2274             <para>\r
2275             This method uses the value of <see cref="P:Microsoft.AspNetCore.Http.HttpRequest.Host"/> to populate the host section of the generated URI.\r
2276             Relying on the value of the current request can allow untrusted input to influence the resulting URI unless \r
2277             the <c>Host</c> header has been validated. See the deployment documentation for instructions on how to properly \r
2278             validate the <c>Host</c> header in your deployment environment.\r
2279             </para>\r
2280             </remarks>\r
2281         </member>\r
2282         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo">\r
2283             <summary>\r
2284             Binding info which represents metadata associated to an action parameter.\r
2285             </summary>\r
2286         </member>\r
2287         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo.#ctor">\r
2288             <summary>\r
2289             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo"/>.\r
2290             </summary>\r
2291         </member>\r
2292         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo.#ctor(Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo)">\r
2293             <summary>\r
2294             Creates a copy of a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo"/>.\r
2295             </summary>\r
2296             <param name="other">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo"/> to copy.</param>\r
2297         </member>\r
2298         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo.BindingSource">\r
2299             <summary>\r
2300             Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource"/>.\r
2301             </summary>\r
2302         </member>\r
2303         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo.BinderModelName">\r
2304             <summary>\r
2305             Gets or sets the binder model name.\r
2306             </summary>\r
2307         </member>\r
2308         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo.BinderType">\r
2309             <summary>\r
2310             Gets or sets the <see cref="T:System.Type"/> of the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder"/> implementation used to bind the\r
2311             model.\r
2312             </summary>\r
2313             <remarks>\r
2314             Also set <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo.BindingSource"/> if the specified <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder"/> implementation does not\r
2315             use values from form data, route values or the query string.\r
2316             </remarks>\r
2317         </member>\r
2318         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo.PropertyFilterProvider">\r
2319             <summary>\r
2320             Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IPropertyFilterProvider"/>.\r
2321             </summary>\r
2322         </member>\r
2323         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo.RequestPredicate">\r
2324             <summary>\r
2325             Gets or sets a predicate which determines whether or not the model should be bound based on state\r
2326             from the current request.\r
2327             </summary>\r
2328         </member>\r
2329         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo.GetBindingInfo(System.Collections.Generic.IEnumerable{System.Object})">\r
2330             <summary>\r
2331             Constructs a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo"/> from the given <paramref name="attributes"/>.\r
2332             <para>\r
2333             This overload does not account for <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo"/> specified via <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/>. Consider using\r
2334             <see cref="M:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo.GetBindingInfo(System.Collections.Generic.IEnumerable{System.Object},Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata)"/> overload, or <see cref="M:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo.TryApplyBindingInfo(Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata)"/>\r
2335             on the result of this method to get a more accurate <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo"/> instance.\r
2336             </para>\r
2337             </summary>\r
2338             <param name="attributes">A collection of attributes which are used to construct <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo"/>\r
2339             </param>\r
2340             <returns>A new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo"/>.</returns>\r
2341         </member>\r
2342         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo.GetBindingInfo(System.Collections.Generic.IEnumerable{System.Object},Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata)">\r
2343             <summary>\r
2344             Constructs a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo"/> from the given <paramref name="attributes"/> and <paramref name="modelMetadata"/>.\r
2345             </summary>\r
2346             <param name="attributes">A collection of attributes which are used to construct <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo"/>.</param>\r
2347             <param name="modelMetadata">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/>.</param>\r
2348             <returns>A new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo"/> if any binding metadata was discovered; otherwise or <see langword="null"/>.</returns>\r
2349         </member>\r
2350         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo.TryApplyBindingInfo(Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata)">\r
2351             <summary>\r
2352             Applies binding metadata from the specified <paramref name="modelMetadata"/>.\r
2353             <para>\r
2354             Uses values from <paramref name="modelMetadata"/> if no value is already available.\r
2355             </para>\r
2356             </summary>\r
2357             <param name="modelMetadata">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/>.</param>\r
2358             <returns><see langword="true"/> if any binding metadata from <paramref name="modelMetadata"/> was applied;\r
2359             <see langword="false"/> otherwise.</returns>\r
2360         </member>\r
2361         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource">\r
2362             <summary>\r
2363             A metadata object representing a source of data for model binding.\r
2364             </summary>\r
2365         </member>\r
2366         <member name="F:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.Body">\r
2367             <summary>\r
2368             A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource"/> for the request body.\r
2369             </summary>\r
2370         </member>\r
2371         <member name="F:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.Custom">\r
2372             <summary>\r
2373             A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource"/> for a custom model binder (unknown data source).\r
2374             </summary>\r
2375         </member>\r
2376         <member name="F:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.Form">\r
2377             <summary>\r
2378             A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource"/> for the request form-data.\r
2379             </summary>\r
2380         </member>\r
2381         <member name="F:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.Header">\r
2382             <summary>\r
2383             A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource"/> for the request headers.\r
2384             </summary>\r
2385         </member>\r
2386         <member name="F:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.ModelBinding">\r
2387             <summary>\r
2388             A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource"/> for model binding. Includes form-data, query-string\r
2389             and route data from the request.\r
2390             </summary>\r
2391         </member>\r
2392         <member name="F:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.Path">\r
2393             <summary>\r
2394             A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource"/> for the request url path.\r
2395             </summary>\r
2396         </member>\r
2397         <member name="F:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.Query">\r
2398             <summary>\r
2399             A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource"/> for the request query-string.\r
2400             </summary>\r
2401         </member>\r
2402         <member name="F:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.Services">\r
2403             <summary>\r
2404             A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource"/> for request services.\r
2405             </summary>\r
2406         </member>\r
2407         <member name="F:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.Special">\r
2408             <summary>\r
2409             A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource"/> for special parameter types that are not user input.\r
2410             </summary>\r
2411         </member>\r
2412         <member name="F:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.FormFile">\r
2413             <summary>\r
2414             A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource"/> for <see cref="T:Microsoft.AspNetCore.Http.IFormFile"/>, <see cref="T:Microsoft.AspNetCore.Http.IFormCollection"/>, and <see cref="T:Microsoft.AspNetCore.Http.IFormFileCollection"/>.\r
2415             </summary>\r
2416         </member>\r
2417         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.#ctor(System.String,System.String,System.Boolean,System.Boolean)">\r
2418             <summary>\r
2419             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource"/>.\r
2420             </summary>\r
2421             <param name="id">The id, a unique identifier.</param>\r
2422             <param name="displayName">The display name.</param>\r
2423             <param name="isGreedy">A value indicating whether or not the source is greedy.</param>\r
2424             <param name="isFromRequest">\r
2425             A value indicating whether or not the data comes from the HTTP request.\r
2426             </param>\r
2427         </member>\r
2428         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.DisplayName">\r
2429             <summary>\r
2430             Gets the display name for the source.\r
2431             </summary>\r
2432         </member>\r
2433         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.Id">\r
2434             <summary>\r
2435             Gets the unique identifier for the source. Sources are compared based on their Id.\r
2436             </summary>\r
2437         </member>\r
2438         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.IsGreedy">\r
2439             <summary>\r
2440             Gets a value indicating whether or not a source is greedy. A greedy source will bind a model in\r
2441             a single operation, and will not decompose the model into sub-properties.\r
2442             </summary>\r
2443             <remarks>\r
2444             <para>\r
2445             For sources based on a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/>, setting <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.IsGreedy"/> to <c>false</c>\r
2446             will most closely describe the behavior. This value is used inside the default model binders to\r
2447             determine whether or not to attempt to bind properties of a model.\r
2448             </para>\r
2449             <para>\r
2450             Set <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.IsGreedy"/> to <c>true</c> for most custom <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder"/> implementations.\r
2451             </para>\r
2452             <para>\r
2453             If a source represents an <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder"/> which will recursively traverse a model's properties\r
2454             and bind them individually using <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/>, then set <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.IsGreedy"/> to\r
2455             <c>true</c>.\r
2456             </para>\r
2457             </remarks>\r
2458         </member>\r
2459         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.IsFromRequest">\r
2460             <summary>\r
2461             Gets a value indicating whether or not the binding source uses input from the current HTTP request.\r
2462             </summary>\r
2463             <remarks>\r
2464             Some sources (like <see cref="F:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.Services"/>) are based on application state and not user\r
2465             input. These are excluded by default from ApiExplorer diagnostics.\r
2466             </remarks>\r
2467         </member>\r
2468         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.CanAcceptDataFrom(Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource)">\r
2469              <summary>\r
2470              Gets a value indicating whether or not the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource"/> can accept\r
2471              data from <paramref name="bindingSource"/>.\r
2472              </summary>\r
2473              <param name="bindingSource">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource"/> to consider as input.</param>\r
2474              <returns><c>True</c> if the source is compatible, otherwise <c>false</c>.</returns>\r
2475              <remarks>\r
2476              When using this method, it is expected that the left-hand-side is metadata specified\r
2477              on a property or parameter for model binding, and the right hand side is a source of\r
2478              data used by a model binder or value provider.\r
2479             \r
2480              This distinction is important as the left-hand-side may be a composite, but the right\r
2481              may not.\r
2482              </remarks>\r
2483         </member>\r
2484         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.Equals(Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource)">\r
2485             <inheritdoc />\r
2486         </member>\r
2487         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.Equals(System.Object)">\r
2488             <inheritdoc />\r
2489         </member>\r
2490         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.GetHashCode">\r
2491             <inheritdoc />\r
2492         </member>\r
2493         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.op_Equality(Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource,Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource)">\r
2494             <inheritdoc />\r
2495         </member>\r
2496         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource.op_Inequality(Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource,Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource)">\r
2497             <inheritdoc />\r
2498         </member>\r
2499         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.CompositeBindingSource">\r
2500             <summary>\r
2501             A <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.CompositeBindingSource.BindingSources"/> which can represent multiple value-provider data sources.\r
2502             </summary>\r
2503         </member>\r
2504         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.CompositeBindingSource.Create(System.Collections.Generic.IEnumerable{Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource},System.String)">\r
2505             <summary>\r
2506             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.CompositeBindingSource"/>.\r
2507             </summary>\r
2508             <param name="bindingSources">\r
2509             The set of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource"/> entries.\r
2510             Must be value-provider sources and user input.\r
2511             </param>\r
2512             <param name="displayName">The display name for the composite source.</param>\r
2513             <returns>A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.CompositeBindingSource"/>.</returns>\r
2514         </member>\r
2515         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.CompositeBindingSource.BindingSources">\r
2516             <summary>\r
2517             Gets the set of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource"/> entries.\r
2518             </summary>\r
2519         </member>\r
2520         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.CompositeBindingSource.CanAcceptDataFrom(Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource)">\r
2521             <inheritdoc />\r
2522         </member>\r
2523         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.EnumGroupAndName">\r
2524             <summary>\r
2525             An abstraction used when grouping enum values for <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.EnumGroupedDisplayNamesAndValues"/>.\r
2526             </summary>\r
2527         </member>\r
2528         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.EnumGroupAndName.#ctor(System.String,System.String)">\r
2529             <summary>\r
2530             Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.EnumGroupAndName"/> structure. This constructor should \r
2531             not be used in any site where localization is important.\r
2532             </summary>\r
2533             <param name="group">The group name.</param>\r
2534             <param name="name">The name.</param>\r
2535         </member>\r
2536         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.EnumGroupAndName.#ctor(System.String,System.Func{System.String})">\r
2537             <summary>\r
2538             Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.EnumGroupAndName"/> structure.\r
2539             </summary>\r
2540             <param name="group">The group name.</param>\r
2541             <param name="name">A <see cref="T:System.Func`1"/> which will return the name.</param>\r
2542         </member>\r
2543         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.EnumGroupAndName.Group">\r
2544             <summary>\r
2545             Gets the Group name.\r
2546             </summary>\r
2547         </member>\r
2548         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.EnumGroupAndName.Name">\r
2549             <summary>\r
2550             Gets the name.\r
2551             </summary>\r
2552         </member>\r
2553         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.IBinderTypeProviderMetadata">\r
2554             <summary>\r
2555             Provides a <see cref="T:System.Type"/> which implements <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder"/>.\r
2556             </summary>\r
2557         </member>\r
2558         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.IBinderTypeProviderMetadata.BinderType">\r
2559             <summary>\r
2560             A <see cref="T:System.Type"/> which implements either <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder"/>.\r
2561             </summary>\r
2562         </member>\r
2563         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.IBindingSourceMetadata">\r
2564             <summary>\r
2565             Metadata which specifies the data source for model binding.\r
2566             </summary>\r
2567         </member>\r
2568         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.IBindingSourceMetadata.BindingSource">\r
2569             <summary>\r
2570             Gets the <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.IBindingSourceMetadata.BindingSource"/>. \r
2571             </summary>\r
2572             <remarks>\r
2573             The <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.IBindingSourceMetadata.BindingSource"/> is metadata which can be used to determine which data\r
2574             sources are valid for model binding of a property or parameter.\r
2575             </remarks>\r
2576         </member>\r
2577         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder">\r
2578             <summary>\r
2579             Defines an interface for model binders.\r
2580             </summary>\r
2581         </member>\r
2582         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder.BindModelAsync(Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext)">\r
2583             <summary>\r
2584             Attempts to bind a model.\r
2585             </summary>\r
2586             <param name="bindingContext">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext"/>.</param>\r
2587             <returns>\r
2588             <para>\r
2589             A <see cref="T:System.Threading.Tasks.Task"/> which will complete when the model binding process completes.\r
2590             </para>\r
2591             <para>\r
2592             If model binding was successful, the <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.Result"/> should have\r
2593             <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult.IsModelSet"/> set to <c>true</c>.\r
2594             </para>\r
2595             <para>\r
2596             A model binder that completes successfully should set <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.Result"/> to\r
2597             a value returned from <see cref="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult.Success(System.Object)"/>.\r
2598             </para>\r
2599             </returns>\r
2600         </member>\r
2601         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinderProvider">\r
2602             <summary>\r
2603             Creates <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder"/> instances. Register <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinderProvider"/>\r
2604             instances in <c>MvcOptions</c>.\r
2605             </summary>\r
2606         </member>\r
2607         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinderProvider.GetBinder(Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderProviderContext)">\r
2608             <summary>\r
2609             Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder"/> based on <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderProviderContext"/>.\r
2610             </summary>\r
2611             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderProviderContext"/>.</param>\r
2612             <returns>An <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder"/>.</returns>\r
2613         </member>\r
2614         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider">\r
2615             <summary>\r
2616             A provider that can supply instances of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/>.\r
2617             </summary>\r
2618             <remarks>\r
2619             While not obsolete, implementing or using <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadataProvider" /> is preferred over <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider"/>.\r
2620             </remarks>\r
2621         </member>\r
2622         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider.GetMetadataForType(System.Type)">\r
2623             <summary>\r
2624             Supplies metadata describing a <see cref="T:System.Type"/>.\r
2625             </summary>\r
2626             <param name="modelType">The <see cref="T:System.Type"/>.</param>\r
2627             <returns>A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> instance describing the <see cref="T:System.Type"/>.</returns>\r
2628         </member>\r
2629         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider.GetMetadataForProperties(System.Type)">\r
2630             <summary>\r
2631             Supplies metadata describing the properties of a <see cref="T:System.Type"/>.\r
2632             </summary>\r
2633             <param name="modelType">The <see cref="T:System.Type"/>.</param>\r
2634             <returns>A set of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> instances describing properties of the <see cref="T:System.Type"/>.</returns>\r
2635         </member>\r
2636         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelNameProvider">\r
2637             <summary>\r
2638             Represents an entity which can provide model name as metadata.\r
2639             </summary>\r
2640         </member>\r
2641         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.IModelNameProvider.Name">\r
2642             <summary>\r
2643             Model name.\r
2644             </summary>\r
2645         </member>\r
2646         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.IPropertyFilterProvider">\r
2647             <summary>\r
2648             Provides a predicate which can determines which model properties should be bound by model binding.\r
2649             </summary>\r
2650         </member>\r
2651         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.IPropertyFilterProvider.PropertyFilter">\r
2652             <summary>\r
2653             Gets a predicate which can determines which model properties should be bound by model binding.\r
2654             </summary>\r
2655         </member>\r
2656         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.IRequestPredicateProvider">\r
2657             <summary>\r
2658             An interface that allows a top-level model to be bound or not bound based on state associated\r
2659             with the current request.\r
2660             </summary>\r
2661         </member>\r
2662         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.IRequestPredicateProvider.RequestPredicate">\r
2663             <summary>\r
2664             Gets a function which determines whether or not the model object should be bound based\r
2665             on the current request.\r
2666             </summary>\r
2667         </member>\r
2668         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider">\r
2669             <summary>\r
2670             Defines the methods that are required for a value provider.\r
2671             </summary>\r
2672         </member>\r
2673         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider.ContainsPrefix(System.String)">\r
2674             <summary>\r
2675             Determines whether the collection contains the specified prefix.\r
2676             </summary>\r
2677             <param name="prefix">The prefix to search for.</param>\r
2678             <returns>true if the collection contains the specified prefix; otherwise, false.</returns>\r
2679         </member>\r
2680         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider.GetValue(System.String)">\r
2681             <summary>\r
2682             Retrieves a value object using the specified key.\r
2683             </summary>\r
2684             <param name="key">The key of the value object to retrieve.</param>\r
2685             <returns>The value object for the specified key. If the exact key is not found, null.</returns>\r
2686         </member>\r
2687         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProviderFactory">\r
2688             <summary>\r
2689             A factory for creating <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/> instances.\r
2690             </summary>\r
2691         </member>\r
2692         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProviderFactory.CreateValueProviderAsync(Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderFactoryContext)">\r
2693             <summary>\r
2694             Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/> with values from the current request\r
2695             and adds it to <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderFactoryContext.ValueProviders"/> list.\r
2696             </summary>\r
2697             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderFactoryContext"/>.</param>\r
2698             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that when completed will add an <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/> instance\r
2699             to <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderFactoryContext.ValueProviders"/> list if applicable.</returns>\r
2700         </member>\r
2701         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelBindingMessageProvider">\r
2702             <summary>\r
2703             Provider for error messages the model binding system detects.\r
2704             </summary>\r
2705         </member>\r
2706         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelBindingMessageProvider.MissingBindRequiredValueAccessor">\r
2707             <summary>\r
2708             Error message the model binding system adds when a property with an associated\r
2709             <c>BindRequiredAttribute</c> is not bound.\r
2710             </summary>\r
2711             <value>\r
2712             Default <see cref="T:System.String"/> is "A value for the '{0}' parameter or property was not provided.".\r
2713             </value>\r
2714         </member>\r
2715         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelBindingMessageProvider.MissingKeyOrValueAccessor">\r
2716             <summary>\r
2717             Error message the model binding system adds when either the key or the value of a\r
2718             <see cref="T:System.Collections.Generic.KeyValuePair`2"/> is bound but not both.\r
2719             </summary>\r
2720             <value>Default <see cref="T:System.String"/> is "A value is required.".</value>\r
2721         </member>\r
2722         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelBindingMessageProvider.MissingRequestBodyRequiredValueAccessor">\r
2723             <summary>\r
2724             Error message the model binding system adds when no value is provided for the request body,\r
2725             but a value is required.\r
2726             </summary>\r
2727             <value>Default <see cref="T:System.String"/> is "A non-empty request body is required.".</value>\r
2728         </member>\r
2729         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelBindingMessageProvider.ValueMustNotBeNullAccessor">\r
2730             <summary>\r
2731             Error message the model binding system adds when a <c>null</c> value is bound to a\r
2732             non-<see cref="T:System.Nullable"/> property.\r
2733             </summary>\r
2734             <value>Default <see cref="T:System.String"/> is "The value '{0}' is invalid.".</value>\r
2735         </member>\r
2736         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelBindingMessageProvider.AttemptedValueIsInvalidAccessor">\r
2737             <summary>\r
2738             Error message the model binding system adds when <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelError.Exception"/> is of type\r
2739             <see cref="T:System.FormatException"/> or <see cref="T:System.OverflowException"/>, value is known, and error is associated\r
2740             with a property.\r
2741             </summary>\r
2742             <value>Default <see cref="T:System.String"/> is "The value '{0}' is not valid for {1}.".</value>\r
2743         </member>\r
2744         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelBindingMessageProvider.NonPropertyAttemptedValueIsInvalidAccessor">\r
2745             <summary>\r
2746             Error message the model binding system adds when <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelError.Exception"/> is of type\r
2747             <see cref="T:System.FormatException"/> or <see cref="T:System.OverflowException"/>, value is known, and error is associated\r
2748             with a collection element or action parameter.\r
2749             </summary>\r
2750             <value>Default <see cref="T:System.String"/> is "The value '{0}' is not valid.".</value>\r
2751         </member>\r
2752         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelBindingMessageProvider.UnknownValueIsInvalidAccessor">\r
2753             <summary>\r
2754             Error message the model binding system adds when <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelError.Exception"/> is of type\r
2755             <see cref="T:System.FormatException"/> or <see cref="T:System.OverflowException"/>, value is unknown, and error is associated\r
2756             with a property.\r
2757             </summary>\r
2758             <value>Default <see cref="T:System.String"/> is "The supplied value is invalid for {0}.".</value>\r
2759         </member>\r
2760         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelBindingMessageProvider.NonPropertyUnknownValueIsInvalidAccessor">\r
2761             <summary>\r
2762             Error message the model binding system adds when <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelError.Exception"/> is of type\r
2763             <see cref="T:System.FormatException"/> or <see cref="T:System.OverflowException"/>, value is unknown, and error is associated\r
2764             with a collection element or action parameter.\r
2765             </summary>\r
2766             <value>Default <see cref="T:System.String"/> is "The supplied value is invalid.".</value>\r
2767         </member>\r
2768         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelBindingMessageProvider.ValueIsInvalidAccessor">\r
2769             <summary>\r
2770             Fallback error message HTML and tag helpers display when a property is invalid but the\r
2771             <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelError"/>s have <c>null</c> <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelError.ErrorMessage"/>s.\r
2772             </summary>\r
2773             <value>Default <see cref="T:System.String"/> is "The value '{0}' is invalid.".</value>\r
2774         </member>\r
2775         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelBindingMessageProvider.ValueMustBeANumberAccessor">\r
2776             <summary>\r
2777             Error message HTML and tag helpers add for client-side validation of numeric formats. Visible in the\r
2778             browser if the field for a <c>float</c> (for example) property does not have a correctly-formatted value.\r
2779             </summary>\r
2780             <value>Default <see cref="T:System.String"/> is "The field {0} must be a number.".</value>\r
2781         </member>\r
2782         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelBindingMessageProvider.NonPropertyValueMustBeANumberAccessor">\r
2783             <summary>\r
2784             Error message HTML and tag helpers add for client-side validation of numeric formats. Visible in the\r
2785             browser if the field for a <c>float</c> (for example) collection element or action parameter does not have a\r
2786             correctly-formatted value.\r
2787             </summary>\r
2788             <value>Default <see cref="T:System.String"/> is "The field must be a number.".</value>\r
2789         </member>\r
2790         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity">\r
2791             <summary>\r
2792             A key type which identifies a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/>.\r
2793             </summary>\r
2794         </member>\r
2795         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.ForType(System.Type)">\r
2796             <summary>\r
2797             Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity"/> for the provided model <see cref="T:System.Type"/>.\r
2798             </summary>\r
2799             <param name="modelType">The model <see cref="T:System.Type"/>.</param>\r
2800             <returns>A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity"/>.</returns>\r
2801         </member>\r
2802         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.ForProperty(System.Type,System.String,System.Type)">\r
2803             <summary>\r
2804             Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity"/> for the provided property.\r
2805             </summary>\r
2806             <param name="modelType">The model type.</param>\r
2807             <param name="name">The name of the property.</param>\r
2808             <param name="containerType">The container type of the model property.</param>\r
2809             <returns>A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity"/>.</returns>\r
2810         </member>\r
2811         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.ForParameter(System.Reflection.ParameterInfo)">\r
2812             <summary>\r
2813             Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity"/> for the provided parameter.\r
2814             </summary>\r
2815             <param name="parameter">The <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.ParameterInfo" />.</param>\r
2816             <returns>A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity"/>.</returns>\r
2817         </member>\r
2818         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.ForParameter(System.Reflection.ParameterInfo,System.Type)">\r
2819             <summary>\r
2820             Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity"/> for the provided parameter with the specified\r
2821             model type.\r
2822             </summary>\r
2823             <param name="parameter">The <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.ParameterInfo" />.</param>\r
2824             <param name="modelType">The model type.</param>\r
2825             <returns>A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity"/>.</returns>\r
2826         </member>\r
2827         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.ContainerType">\r
2828             <summary>\r
2829             Gets the <see cref="T:System.Type"/> defining the model property represented by the current\r
2830             instance, or <c>null</c> if the current instance does not represent a property.\r
2831             </summary>\r
2832         </member>\r
2833         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.ModelType">\r
2834             <summary>\r
2835             Gets the <see cref="T:System.Type"/> represented by the current instance.\r
2836             </summary>\r
2837         </member>\r
2838         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.MetadataKind">\r
2839             <summary>\r
2840             Gets a value indicating the kind of metadata represented by the current instance.\r
2841             </summary>\r
2842         </member>\r
2843         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.Name">\r
2844             <summary>\r
2845             Gets the name of the current instance if it represents a parameter or property, or <c>null</c> if\r
2846             the current instance represents a type.\r
2847             </summary>\r
2848         </member>\r
2849         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.ParameterInfo">\r
2850             <summary>\r
2851             Gets a descriptor for the parameter, or <c>null</c> if this instance\r
2852             does not represent a parameter.\r
2853             </summary>\r
2854         </member>\r
2855         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.Equals(Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity)">\r
2856             <inheritdoc />\r
2857         </member>\r
2858         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.Equals(System.Object)">\r
2859             <inheritdoc />\r
2860         </member>\r
2861         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity.GetHashCode">\r
2862             <inheritdoc />\r
2863         </member>\r
2864         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataKind">\r
2865             <summary>\r
2866             Enumeration for the kinds of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/>\r
2867             </summary>\r
2868         </member>\r
2869         <member name="F:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataKind.Type">\r
2870             <summary>\r
2871             Used for <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> for a <see cref="T:System.Type"/>.\r
2872             </summary>\r
2873         </member>\r
2874         <member name="F:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataKind.Property">\r
2875             <summary>\r
2876             Used for <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> for a property.\r
2877             </summary>\r
2878         </member>\r
2879         <member name="F:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataKind.Parameter">\r
2880             <summary>\r
2881             Used for <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> for a parameter.\r
2882             </summary>\r
2883         </member>\r
2884         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderProviderContext">\r
2885             <summary>\r
2886             A context object for <see cref="M:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinderProvider.GetBinder(Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderProviderContext)"/>.\r
2887             </summary>\r
2888         </member>\r
2889         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderProviderContext.CreateBinder(Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata)">\r
2890             <summary>\r
2891             Creates an <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder"/> for the given <paramref name="metadata"/>.\r
2892             </summary>\r
2893             <param name="metadata">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> for the model.</param>\r
2894             <returns>An <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder"/>.</returns>\r
2895         </member>\r
2896         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderProviderContext.CreateBinder(Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata,Microsoft.AspNetCore.Mvc.ModelBinding.BindingInfo)">\r
2897             <summary>\r
2898             Creates an <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder"/> for the given <paramref name="metadata"/>\r
2899             and <paramref name="bindingInfo"/>.\r
2900             </summary>\r
2901             <param name="metadata">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> for the model.</param>\r
2902             <param name="bindingInfo">The <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderProviderContext.BindingInfo"/> that should be used\r
2903             for creating the binder.</param>\r
2904             <returns>An <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder"/>.</returns>\r
2905         </member>\r
2906         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderProviderContext.BindingInfo">\r
2907             <summary>\r
2908             Gets the <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderProviderContext.BindingInfo"/>.\r
2909             </summary>\r
2910         </member>\r
2911         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderProviderContext.Metadata">\r
2912             <summary>\r
2913             Gets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/>.\r
2914             </summary>\r
2915         </member>\r
2916         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderProviderContext.MetadataProvider">\r
2917             <summary>\r
2918             Gets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider"/>.\r
2919             </summary>\r
2920         </member>\r
2921         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBinderProviderContext.Services">\r
2922             <summary>\r
2923             Gets the <see cref="T:System.IServiceProvider"/>.\r
2924             </summary>\r
2925         </member>\r
2926         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext">\r
2927             <summary>\r
2928             A context that contains operating information for model binding and validation.\r
2929             </summary>\r
2930         </member>\r
2931         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.ActionContext">\r
2932             <summary>\r
2933             Represents the <see cref="T:Microsoft.AspNetCore.Mvc.ActionContext"/> associated with this context.\r
2934             </summary>\r
2935             <remarks>\r
2936             The property setter is provided for unit testing purposes only.\r
2937             </remarks>\r
2938         </member>\r
2939         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.BinderModelName">\r
2940             <summary>\r
2941             Gets or sets a model name which is explicitly set using an <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelNameProvider"/>.\r
2942             </summary>\r
2943         </member>\r
2944         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.BindingSource">\r
2945             <summary>\r
2946             Gets or sets a value which represents the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.BindingSource"/> associated with the\r
2947             <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.Model"/>.\r
2948             </summary>\r
2949         </member>\r
2950         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.FieldName">\r
2951             <summary>\r
2952             Gets or sets the name of the current field being bound.\r
2953             </summary>\r
2954         </member>\r
2955         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.HttpContext">\r
2956             <summary>\r
2957             Gets the <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with this context.\r
2958             </summary>\r
2959         </member>\r
2960         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.IsTopLevelObject">\r
2961             <summary>\r
2962             Gets or sets an indication that the current binder is handling the top-level object.\r
2963             </summary>\r
2964             <remarks>Passed into the model binding system.</remarks>\r
2965         </member>\r
2966         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.Model">\r
2967             <summary>\r
2968             Gets or sets the model value for the current operation.\r
2969             </summary>\r
2970             <remarks>\r
2971             The <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.Model"/> will typically be set for a binding operation that works\r
2972             against a pre-existing model object to update certain properties.\r
2973             </remarks>\r
2974         </member>\r
2975         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.ModelMetadata">\r
2976             <summary>\r
2977             Gets or sets the metadata for the model associated with this context.\r
2978             </summary>\r
2979         </member>\r
2980         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.ModelName">\r
2981             <summary>\r
2982             Gets or sets the name of the model. This property is used as a key for looking up values in\r
2983             <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/> during model binding.\r
2984             </summary>\r
2985         </member>\r
2986         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.OriginalModelName">\r
2987             <summary>\r
2988             Gets or sets the name of the top-level model. This is not reset to <see cref="F:System.String.Empty"/> when value\r
2989             providers have no match for that model.\r
2990             </summary>\r
2991         </member>\r
2992         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.ModelState">\r
2993             <summary>\r
2994             Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/> used to capture <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> values\r
2995             for properties in the object graph of the model when binding.\r
2996             </summary>\r
2997             <remarks>\r
2998             The property setter is provided for unit testing purposes only.\r
2999             </remarks>\r
3000         </member>\r
3001         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.ModelType">\r
3002             <summary>\r
3003             Gets the type of the model.\r
3004             </summary>\r
3005             <remarks>\r
3006             The <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.ModelMetadata"/> property must be set to access this property.\r
3007             </remarks>\r
3008         </member>\r
3009         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.PropertyFilter">\r
3010             <summary>\r
3011             Gets or sets a predicate which will be evaluated for each property to determine if the property\r
3012             is eligible for model binding.\r
3013             </summary>\r
3014         </member>\r
3015         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.ValidationState">\r
3016             <summary>\r
3017             Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary"/>. Used for tracking validation state to\r
3018             customize validation behavior for a model object.\r
3019             </summary>\r
3020             <remarks>\r
3021             The property setter is provided for unit testing purposes only.\r
3022             </remarks>\r
3023         </member>\r
3024         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.ValueProvider">\r
3025             <summary>\r
3026             Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/> associated with this context.\r
3027             </summary>\r
3028         </member>\r
3029         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.Result">\r
3030             <summary>\r
3031             <para>\r
3032             Gets or sets a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult"/> which represents the result of the model binding process.\r
3033             </para>\r
3034             <para>\r
3035             Before an <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder"/> is called, <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.Result"/> will be set to a value indicating\r
3036             failure. The binder should set <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.Result"/> to a value created with\r
3037             <see cref="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult.Success(System.Object)"/> if model binding succeeded.\r
3038             </para>\r
3039             </summary>\r
3040         </member>\r
3041         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.EnterNestedScope(Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata,System.String,System.String,System.Object)">\r
3042             <summary>\r
3043             Pushes a layer of state onto this context. <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder"/> implementations will call this as\r
3044             part of recursion when binding properties or collection items.\r
3045             </summary>\r
3046             <param name="modelMetadata">\r
3047             <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> to assign to the <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.ModelMetadata"/> property.\r
3048             </param>\r
3049             <param name="fieldName">Name to assign to the <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.FieldName"/> property.</param>\r
3050             <param name="modelName">Name to assign to the <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.ModelName"/> property.</param>\r
3051             <param name="model">Instance to assign to the <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.Model"/> property.</param>\r
3052             <returns>\r
3053             A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.NestedScope"/> scope object which should be used in a <c>using</c> statement where\r
3054             <see cref="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.EnterNestedScope(Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata,System.String,System.String,System.Object)"/> is called.\r
3055             </returns>\r
3056         </member>\r
3057         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.EnterNestedScope">\r
3058             <summary>\r
3059             Pushes a layer of state onto this context. <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder"/> implementations will call this as\r
3060             part of recursion when binding properties or collection items.\r
3061             </summary>\r
3062             <returns>\r
3063             A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.NestedScope"/> scope object which should be used in a <c>using</c> statement where\r
3064             <see cref="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.EnterNestedScope"/> is called.\r
3065             </returns>\r
3066         </member>\r
3067         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.ExitNestedScope">\r
3068             <summary>\r
3069             Removes a layer of state pushed by calling <see cref="M:EnterNestedScope"/>.\r
3070             </summary>\r
3071         </member>\r
3072         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.NestedScope">\r
3073             <summary>\r
3074             Return value of <see cref="M:EnterNestedScope"/>. Should be disposed\r
3075             by caller when child binding context state should be popped off of\r
3076             the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext"/>.\r
3077             </summary>\r
3078         </member>\r
3079         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.NestedScope.#ctor(Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext)">\r
3080             <summary>\r
3081             Initializes the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.NestedScope"/> for a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext"/>.\r
3082             </summary>\r
3083             <param name="context"></param>\r
3084         </member>\r
3085         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.NestedScope.Dispose">\r
3086             <summary>\r
3087             Exits the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingContext.NestedScope"/> created by calling <see cref="M:EnterNestedScope"/>.\r
3088             </summary>\r
3089         </member>\r
3090         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult">\r
3091             <summary>\r
3092             Contains the result of model binding.\r
3093             </summary>\r
3094         </member>\r
3095         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult.Failed">\r
3096             <summary>\r
3097             Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult"/> representing a failed model binding operation.\r
3098             </summary>\r
3099             <returns>A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult"/> representing a failed model binding operation.</returns>\r
3100         </member>\r
3101         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult.Success(System.Object)">\r
3102             <summary>\r
3103             Creates a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult"/> representing a successful model binding operation.\r
3104             </summary>\r
3105             <param name="model">The model value. May be <c>null.</c></param>\r
3106             <returns>A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult"/> representing a successful model bind.</returns>\r
3107         </member>\r
3108         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult.Model">\r
3109             <summary>\r
3110             Gets the model associated with this context.\r
3111             </summary>\r
3112         </member>\r
3113         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult.IsModelSet">\r
3114             <summary>\r
3115             <para>\r
3116             Gets a value indicating whether or not the <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult.Model"/> value has been set.\r
3117             </para>\r
3118             <para>\r
3119             This property can be used to distinguish between a model binder which does not find a value and\r
3120             the case where a model binder sets the <c>null</c> value.\r
3121             </para>\r
3122             </summary>\r
3123         </member>\r
3124         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult.Equals(System.Object)">\r
3125             <inheritdoc />\r
3126         </member>\r
3127         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult.GetHashCode">\r
3128             <inheritdoc />\r
3129         </member>\r
3130         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult.Equals(Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult)">\r
3131             <inheritdoc />\r
3132         </member>\r
3133         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult.ToString">\r
3134             <inheritdoc />\r
3135         </member>\r
3136         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult.op_Equality(Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult,Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult)">\r
3137             <summary>\r
3138             Compares <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult"/> objects for equality.\r
3139             </summary>\r
3140             <param name="x">A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult"/>.</param>\r
3141             <param name="y">A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult"/>.</param>\r
3142             <returns><c>true</c> if the objects are equal, otherwise <c>false</c>.</returns>\r
3143         </member>\r
3144         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult.op_Inequality(Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult,Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult)">\r
3145             <summary>\r
3146             Compares <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult"/> objects for inequality.\r
3147             </summary>\r
3148             <param name="x">A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult"/>.</param>\r
3149             <param name="y">A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelBindingResult"/>.</param>\r
3150             <returns><c>true</c> if the objects are not equal, otherwise <c>false</c>.</returns>\r
3151         </member>\r
3152         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelError">\r
3153             <summary>\r
3154             An error that occured during model binding and validation.\r
3155             </summary>\r
3156         </member>\r
3157         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelError.#ctor(System.Exception)">\r
3158             <summary>\r
3159             Intiializes a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelError"/> with the specified <paramref name="exception"/>.\r
3160             </summary>\r
3161             <param name="exception">The <see cref="T:System.Exception"/>.</param>\r
3162         </member>\r
3163         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelError.#ctor(System.Exception,System.String)">\r
3164             <summary>\r
3165             Intiializes a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelError"/> with the specified <paramref name="exception"/>\r
3166             and specified <paramref name="errorMessage"/>.\r
3167             </summary>\r
3168             <param name="exception">The <see cref="T:System.Exception"/>.</param>\r
3169             <param name="errorMessage">The error message.</param>\r
3170         </member>\r
3171         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelError.#ctor(System.String)">\r
3172             <summary>\r
3173             Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelError"/> with the specified <paramref name="errorMessage"/>.\r
3174             </summary>\r
3175             <param name="errorMessage">The error message.</param>\r
3176         </member>\r
3177         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelError.Exception">\r
3178             <summary>\r
3179             Gets the <see cref="T:System.Exception"/> associated with this <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelError"/> instance.\r
3180             </summary>\r
3181         </member>\r
3182         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelError.ErrorMessage">\r
3183             <summary>\r
3184             Gets the error message associated with this <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelError"/> instance.\r
3185             </summary>\r
3186         </member>\r
3187         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelErrorCollection">\r
3188             <summary>\r
3189             A collection of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelError"/> instances.\r
3190             </summary>\r
3191         </member>\r
3192         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelErrorCollection.Add(System.Exception)">\r
3193             <summary>\r
3194             Adds the specified <paramref name="exception"/> instance.\r
3195             </summary>\r
3196             <param name="exception">The <see cref="T:System.Exception"/></param>\r
3197         </member>\r
3198         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelErrorCollection.Add(System.String)">\r
3199             <summary>\r
3200             Adds the specified error message.\r
3201             </summary>\r
3202             <param name="errorMessage">The error message.</param>\r
3203         </member>\r
3204         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata">\r
3205             <summary>\r
3206             A metadata representation of a model type, property or parameter.\r
3207             </summary>\r
3208         </member>\r
3209         <member name="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.DefaultOrder">\r
3210             <summary>\r
3211             The default value of <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.Order"/>.\r
3212             </summary>\r
3213         </member>\r
3214         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.#ctor(Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity)">\r
3215             <summary>\r
3216             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/>.\r
3217             </summary>\r
3218             <param name="identity">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelMetadataIdentity"/>.</param>\r
3219         </member>\r
3220         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ContainerType">\r
3221             <summary>\r
3222             Gets the type containing the property if this metadata is for a property; <see langword="null"/> otherwise.\r
3223             </summary>\r
3224         </member>\r
3225         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ContainerMetadata">\r
3226             <summary>\r
3227             Gets the metadata for <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ContainerType"/> if this metadata is for a property;\r
3228             <see langword="null"/> otherwise.\r
3229             </summary>\r
3230         </member>\r
3231         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.MetadataKind">\r
3232             <summary>\r
3233             Gets a value indicating the kind of metadata element represented by the current instance.\r
3234             </summary>\r
3235         </member>\r
3236         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ModelType">\r
3237             <summary>\r
3238             Gets the model type represented by the current instance.\r
3239             </summary>\r
3240         </member>\r
3241         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.Name">\r
3242             <summary>\r
3243             Gets the name of the parameter or property if this metadata is for a parameter or property;\r
3244             <see langword="null"/> otherwise i.e. if this is the metadata for a type.\r
3245             </summary>\r
3246         </member>\r
3247         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ParameterName">\r
3248             <summary>\r
3249             Gets the name of the parameter if this metadata is for a parameter; <see langword="null"/> otherwise.\r
3250             </summary>\r
3251         </member>\r
3252         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.PropertyName">\r
3253             <summary>\r
3254             Gets the name of the property if this metadata is for a property; <see langword="null"/> otherwise.\r
3255             </summary>\r
3256         </member>\r
3257         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.Identity">\r
3258             <summary>\r
3259             Gets the key for the current instance.\r
3260             </summary>\r
3261         </member>\r
3262         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.AdditionalValues">\r
3263             <summary>\r
3264             Gets a collection of additional information about the model.\r
3265             </summary>\r
3266         </member>\r
3267         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.Properties">\r
3268             <summary>\r
3269             Gets the collection of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> instances for the model's properties.\r
3270             </summary>\r
3271         </member>\r
3272         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.BinderModelName">\r
3273             <summary>\r
3274             Gets the name of a model if specified explicitly using <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelNameProvider"/>.\r
3275             </summary>\r
3276         </member>\r
3277         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.BinderType">\r
3278             <summary>\r
3279             Gets the <see cref="T:System.Type"/> of an <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelBinder"/> of a model if specified explicitly using\r
3280             <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IBinderTypeProviderMetadata"/>.\r
3281             </summary>\r
3282         </member>\r
3283         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.BindingSource">\r
3284             <summary>\r
3285             Gets a binder metadata for this model.\r
3286             </summary>\r
3287         </member>\r
3288         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ConvertEmptyStringToNull">\r
3289             <summary>\r
3290             Gets a value indicating whether or not to convert an empty string value or one containing only whitespace\r
3291             characters to <c>null</c> when representing a model as text.\r
3292             </summary>\r
3293         </member>\r
3294         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.DataTypeName">\r
3295             <summary>\r
3296             Gets the name of the model's datatype.  Overrides <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ModelType"/> in some\r
3297             display scenarios.\r
3298             </summary>\r
3299             <value><c>null</c> unless set manually or through additional metadata e.g. attributes.</value>\r
3300         </member>\r
3301         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.Description">\r
3302             <summary>\r
3303             Gets the description of the model.\r
3304             </summary>\r
3305         </member>\r
3306         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.DisplayFormatString">\r
3307             <summary>\r
3308             Gets the format string (see https://msdn.microsoft.com/en-us/library/txafckwd.aspx) used to display the\r
3309             model.\r
3310             </summary>\r
3311         </member>\r
3312         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.DisplayName">\r
3313             <summary>\r
3314             Gets the display name of the model.\r
3315             </summary>\r
3316         </member>\r
3317         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.EditFormatString">\r
3318             <summary>\r
3319             Gets the format string (see https://msdn.microsoft.com/en-us/library/txafckwd.aspx) used to edit the model.\r
3320             </summary>\r
3321         </member>\r
3322         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ElementMetadata">\r
3323             <summary>\r
3324             Gets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> for elements of <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ModelType"/> if that <see cref="T:System.Type"/>\r
3325             implements <see cref="T:System.Collections.IEnumerable"/>.\r
3326             </summary>\r
3327             <value>\r
3328             <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> for <c>T</c> if <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ModelType"/> implements\r
3329             <see cref="T:System.Collections.Generic.IEnumerable`1"/>. <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> for <c>object</c> if <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ModelType"/>\r
3330             implements <see cref="T:System.Collections.IEnumerable"/> but not <see cref="T:System.Collections.Generic.IEnumerable`1"/>. <c>null</c> otherwise i.e. when\r
3331             <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.IsEnumerableType"/> is <c>false</c>.\r
3332             </value>\r
3333         </member>\r
3334         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.EnumGroupedDisplayNamesAndValues">\r
3335             <summary>\r
3336             Gets the ordered and grouped display names and values of all <see cref="T:System.Enum"/> values in\r
3337             <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.UnderlyingOrModelType"/>.\r
3338             </summary>\r
3339             <value>\r
3340             An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:System.Collections.Generic.KeyValuePair`2"/> of mappings between\r
3341             <see cref="T:System.Enum"/> field groups, names and values. <c>null</c> if <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.IsEnum"/> is <c>false</c>.\r
3342             </value>\r
3343         </member>\r
3344         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.EnumNamesAndValues">\r
3345             <summary>\r
3346             Gets the names and values of all <see cref="T:System.Enum"/> values in <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.UnderlyingOrModelType"/>.\r
3347             </summary>\r
3348             <value>\r
3349             An <see cref="T:System.Collections.Generic.IReadOnlyDictionary`2"/> of mappings between <see cref="T:System.Enum"/> field names\r
3350             and values. <c>null</c> if <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.IsEnum"/> is <c>false</c>.\r
3351             </value>\r
3352         </member>\r
3353         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.HasNonDefaultEditFormat">\r
3354             <summary>\r
3355             Gets a value indicating whether <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.EditFormatString"/> has a non-<c>null</c>, non-empty\r
3356             value different from the default for the datatype.\r
3357             </summary>\r
3358         </member>\r
3359         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.HtmlEncode">\r
3360             <summary>\r
3361             Gets a value indicating whether the value should be HTML-encoded.\r
3362             </summary>\r
3363             <value>If <c>true</c>, value should be HTML-encoded. Default is <c>true</c>.</value>\r
3364         </member>\r
3365         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.HideSurroundingHtml">\r
3366             <summary>\r
3367             Gets a value indicating whether the "HiddenInput" display template should return\r
3368             <c>string.Empty</c> (not the expression value) and whether the "HiddenInput" editor template should not\r
3369             also return the expression value (together with the hidden &lt;input&gt; element).\r
3370             </summary>\r
3371             <remarks>\r
3372             If <c>true</c>, also causes the default <see cref="T:System.Object"/> display and editor templates to return HTML\r
3373             lacking the usual per-property &lt;div&gt; wrapper around the associated property. Thus the default\r
3374             <see cref="T:System.Object"/> display template effectively skips the property and the default <see cref="T:System.Object"/>\r
3375             editor template returns only the hidden &lt;input&gt; element for the property.\r
3376             </remarks>\r
3377         </member>\r
3378         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.IsBindingAllowed">\r
3379             <summary>\r
3380             Gets a value indicating whether or not the model value can be bound by model binding. This is only\r
3381             applicable when the current instance represents a property.\r
3382             </summary>\r
3383             <remarks>\r
3384             If <c>true</c> then the model value is considered supported by model binding and can be set\r
3385             based on provided input in the request.\r
3386             </remarks>\r
3387         </member>\r
3388         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.IsBindingRequired">\r
3389             <summary>\r
3390             Gets a value indicating whether or not the model value is required by model binding. This is only\r
3391             applicable when the current instance represents a property.\r
3392             </summary>\r
3393             <remarks>\r
3394             If <c>true</c> then the model value is considered required by model binding and must have a value\r
3395             supplied in the request to be considered valid.\r
3396             </remarks>\r
3397         </member>\r
3398         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.IsEnum">\r
3399             <summary>\r
3400             Gets a value indicating whether <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.UnderlyingOrModelType"/> is for an <see cref="T:System.Enum"/>.\r
3401             </summary>\r
3402             <value>\r
3403             <c>true</c> if <c>type.IsEnum</c> (<c>type.GetTypeInfo().IsEnum</c> for DNX Core 5.0) is <c>true</c> for\r
3404             <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.UnderlyingOrModelType"/>; <c>false</c> otherwise.\r
3405             </value>\r
3406         </member>\r
3407         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.IsFlagsEnum">\r
3408             <summary>\r
3409             Gets a value indicating whether <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.UnderlyingOrModelType"/> is for an <see cref="T:System.Enum"/> with an\r
3410             associated <see cref="T:System.FlagsAttribute"/>.\r
3411             </summary>\r
3412             <value>\r
3413             <c>true</c> if <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.IsEnum"/> is <c>true</c> and <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.UnderlyingOrModelType"/> has an\r
3414             associated <see cref="T:System.FlagsAttribute"/>; <c>false</c> otherwise.\r
3415             </value>\r
3416         </member>\r
3417         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.IsReadOnly">\r
3418             <summary>\r
3419             Gets a value indicating whether or not the model value is read-only. This is only applicable when\r
3420             the current instance represents a property.\r
3421             </summary>\r
3422         </member>\r
3423         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.IsRequired">\r
3424             <summary>\r
3425             Gets a value indicating whether or not the model value is required. This is only applicable when\r
3426             the current instance represents a property.\r
3427             </summary>\r
3428             <remarks>\r
3429             <para>\r
3430             If <c>true</c> then the model value is considered required by validators.\r
3431             </para>\r
3432             <para>\r
3433             By default an implicit <c>System.ComponentModel.DataAnnotations.RequiredAttribute</c> will be added\r
3434             if not present when <c>true.</c>.\r
3435             </para>\r
3436             </remarks>\r
3437         </member>\r
3438         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ModelBindingMessageProvider">\r
3439             <summary>\r
3440             Gets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.ModelBindingMessageProvider"/> instance.\r
3441             </summary>\r
3442         </member>\r
3443         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.Order">\r
3444             <summary>\r
3445             Gets a value indicating where the current metadata should be ordered relative to other properties\r
3446             in its containing type.\r
3447             </summary>\r
3448             <value>The order value of the current metadata.</value>\r
3449             <remarks>\r
3450             <para>For example this property is used to order items in <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.Properties"/>.</para>\r
3451             <para>The default order is <c>10000</c>.</para>\r
3452             </remarks>\r
3453         </member>\r
3454         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.Placeholder">\r
3455             <summary>\r
3456             Gets the text to display as a placeholder value for an editor.\r
3457             </summary>\r
3458         </member>\r
3459         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.NullDisplayText">\r
3460             <summary>\r
3461             Gets the text to display when the model is <c>null</c>.\r
3462             </summary>\r
3463         </member>\r
3464         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.PropertyFilterProvider">\r
3465             <summary>\r
3466             Gets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IPropertyFilterProvider"/>, which can determine which properties\r
3467             should be model bound.\r
3468             </summary>\r
3469         </member>\r
3470         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ShowForDisplay">\r
3471             <summary>\r
3472             Gets a value that indicates whether the property should be displayed in read-only views.\r
3473             </summary>\r
3474         </member>\r
3475         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ShowForEdit">\r
3476             <summary>\r
3477             Gets a value that indicates whether the property should be displayed in editable views.\r
3478             </summary>\r
3479         </member>\r
3480         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.SimpleDisplayProperty">\r
3481             <summary>\r
3482             Gets  a value which is the name of the property used to display the model.\r
3483             </summary>\r
3484         </member>\r
3485         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.TemplateHint">\r
3486             <summary>\r
3487             Gets a string used by the templating system to discover display-templates and editor-templates.\r
3488             </summary>\r
3489         </member>\r
3490         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.PropertyValidationFilter">\r
3491             <summary>\r
3492             Gets an <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IPropertyValidationFilter"/> implementation that indicates whether this model should be\r
3493             validated. If <c>null</c>, properties with this <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> are validated.\r
3494             </summary>\r
3495             <value>Defaults to <c>null</c>.</value>\r
3496         </member>\r
3497         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ValidateChildren">\r
3498             <summary>\r
3499             Gets a value that indicates whether properties or elements of the model should be validated.\r
3500             </summary>\r
3501         </member>\r
3502         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.HasValidators">\r
3503             <summary>\r
3504             Gets a value that indicates if the model, or one of it's properties, or elements has associated validators.\r
3505             </summary>\r
3506             <remarks>\r
3507             When <see langword="false"/>, validation can be assume that the model is valid (<see cref="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Valid"/>) without\r
3508             inspecting the object graph.\r
3509             </remarks>\r
3510         </member>\r
3511         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ValidatorMetadata">\r
3512             <summary>\r
3513             Gets a collection of metadata items for validators.\r
3514             </summary>\r
3515         </member>\r
3516         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ElementType">\r
3517             <summary>\r
3518             Gets the <see cref="T:System.Type"/> for elements of <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ModelType"/> if that <see cref="T:System.Type"/>\r
3519             implements <see cref="T:System.Collections.IEnumerable"/>.\r
3520             </summary>\r
3521         </member>\r
3522         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.IsComplexType">\r
3523             <summary>\r
3524             Gets a value indicating whether <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ModelType"/> is a complex type.\r
3525             </summary>\r
3526             <remarks>\r
3527             A complex type is defined as a <see cref="T:System.Type"/> without a <see cref="T:System.ComponentModel.TypeConverter"/> that can convert\r
3528             from <see cref="T:System.String"/>. Most POCO and <see cref="T:System.Collections.IEnumerable"/> types are therefore complex. Most, if\r
3529             not all, BCL value types are simple types.\r
3530             </remarks>\r
3531         </member>\r
3532         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.IsNullableValueType">\r
3533             <summary>\r
3534             Gets a value indicating whether or not <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ModelType"/> is a <see cref="T:System.Nullable`1"/>.\r
3535             </summary>\r
3536         </member>\r
3537         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.IsCollectionType">\r
3538             <summary>\r
3539             Gets a value indicating whether or not <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ModelType"/> is a collection type.\r
3540             </summary>\r
3541             <remarks>\r
3542             A collection type is defined as a <see cref="T:System.Type"/> which is assignable to <see cref="T:System.Collections.Generic.ICollection`1"/>.\r
3543             </remarks>\r
3544         </member>\r
3545         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.IsEnumerableType">\r
3546             <summary>\r
3547             Gets a value indicating whether or not <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ModelType"/> is an enumerable type.\r
3548             </summary>\r
3549             <remarks>\r
3550             An enumerable type is defined as a <see cref="T:System.Type"/> which is assignable to\r
3551             <see cref="T:System.Collections.IEnumerable"/>, and is not a <see cref="T:System.String"/>.\r
3552             </remarks>\r
3553         </member>\r
3554         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.IsReferenceOrNullableType">\r
3555             <summary>\r
3556             Gets a value indicating whether or not <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ModelType"/> allows <c>null</c> values.\r
3557             </summary>\r
3558         </member>\r
3559         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.UnderlyingOrModelType">\r
3560             <summary>\r
3561             Gets the underlying type argument if <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ModelType"/> inherits from <see cref="T:System.Nullable`1"/>.\r
3562             Otherwise gets <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ModelType"/>.\r
3563             </summary>\r
3564             <remarks>\r
3565             Identical to <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ModelType"/> unless <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.IsNullableValueType"/> is <c>true</c>.\r
3566             </remarks>\r
3567         </member>\r
3568         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.PropertyGetter">\r
3569             <summary>\r
3570             Gets a property getter delegate to get the property value from a model object.\r
3571             </summary>\r
3572         </member>\r
3573         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.PropertySetter">\r
3574             <summary>\r
3575             Gets a property setter delegate to set the property value on a model object.\r
3576             </summary>\r
3577         </member>\r
3578         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.GetDisplayName">\r
3579             <summary>\r
3580             Gets a display name for the model.\r
3581             </summary>\r
3582             <remarks>\r
3583             <see cref="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.GetDisplayName"/> will return the first of the following expressions which has a\r
3584             non-<see langword="null"/> value: <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.DisplayName"/>, <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.Name"/>, or <c>ModelType.Name</c>.\r
3585             </remarks>\r
3586             <returns>The display name.</returns>\r
3587         </member>\r
3588         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.Equals(Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata)">\r
3589             <inheritdoc />\r
3590         </member>\r
3591         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.Equals(System.Object)">\r
3592             <inheritdoc />\r
3593         </member>\r
3594         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.GetHashCode">\r
3595             <inheritdoc />\r
3596         </member>\r
3597         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.GetMetadataForType(System.Type)">\r
3598             <inheritdoc />\r
3599         </member>\r
3600         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.GetMetadataForProperties(System.Type)">\r
3601             <inheritdoc />\r
3602         </member>\r
3603         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadataProvider">\r
3604             <summary>\r
3605             A provider that can supply instances of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/>.\r
3606             </summary>\r
3607         </member>\r
3608         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadataProvider.GetMetadataForProperties(System.Type)">\r
3609             <summary>\r
3610             Supplies metadata describing the properties of a <see cref="T:System.Type"/>.\r
3611             </summary>\r
3612             <param name="modelType">The <see cref="T:System.Type"/>.</param>\r
3613             <returns>A set of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> instances describing properties of the <see cref="T:System.Type"/>.</returns>\r
3614         </member>\r
3615         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadataProvider.GetMetadataForType(System.Type)">\r
3616             <summary>\r
3617             Supplies metadata describing a <see cref="T:System.Type"/>.\r
3618             </summary>\r
3619             <param name="modelType">The <see cref="T:System.Type"/>.</param>\r
3620             <returns>A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> instance describing the <see cref="T:System.Type"/>.</returns>\r
3621         </member>\r
3622         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadataProvider.GetMetadataForParameter(System.Reflection.ParameterInfo)">\r
3623             <summary>\r
3624             Supplies metadata describing a parameter.\r
3625             </summary>\r
3626             <param name="parameter">The <see cref="T:System.Reflection.ParameterInfo"/>.</param>\r
3627             <returns>A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> instance describing the <paramref name="parameter"/>.</returns>\r
3628         </member>\r
3629         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadataProvider.GetMetadataForParameter(System.Reflection.ParameterInfo,System.Type)">\r
3630             <summary>\r
3631             Supplies metadata describing a parameter.\r
3632             </summary>\r
3633             <param name="parameter">The <see cref="T:System.Reflection.ParameterInfo"/></param>\r
3634             <param name="modelType">The actual model type.</param>\r
3635             <returns>A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> instance describing the <paramref name="parameter"/>.</returns>\r
3636         </member>\r
3637         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadataProvider.GetMetadataForProperty(System.Reflection.PropertyInfo,System.Type)">\r
3638             <summary>\r
3639             Supplies metadata describing a property.\r
3640             </summary>\r
3641             <param name="propertyInfo">The <see cref="T:System.Reflection.PropertyInfo"/>.</param>\r
3642             <param name="modelType">The actual model type.</param>\r
3643             <returns>A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> instance describing the <paramref name="propertyInfo"/>.</returns>\r
3644         </member>\r
3645         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelPropertyCollection">\r
3646             <summary>\r
3647             A read-only collection of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> objects which represent model properties.\r
3648             </summary>\r
3649         </member>\r
3650         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelPropertyCollection.#ctor(System.Collections.Generic.IEnumerable{Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata})">\r
3651             <summary>\r
3652             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelPropertyCollection"/>.\r
3653             </summary>\r
3654             <param name="properties">The properties.</param>\r
3655         </member>\r
3656         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelPropertyCollection.Item(System.String)">\r
3657             <summary>\r
3658             Gets a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> instance for the property corresponding to <paramref name="propertyName"/>.\r
3659             </summary>\r
3660             <param name="propertyName">\r
3661             The property name. Property names are compared using <see cref="F:System.StringComparison.Ordinal"/>.\r
3662             </param>\r
3663             <returns>\r
3664             The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> instance for the property specified by <paramref name="propertyName"/>, or\r
3665             <c>null</c> if no match can be found.\r
3666             </returns>\r
3667         </member>\r
3668         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary">\r
3669             <summary>\r
3670             Represents the state of an attempt to bind values from an HTTP Request to an action method, which includes\r
3671             validation information.\r
3672             </summary>\r
3673         </member>\r
3674         <member name="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.DefaultMaxAllowedErrors">\r
3675             <summary>\r
3676             The default value for <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.MaxAllowedErrors"/> of <c>200</c>.\r
3677             </summary>\r
3678         </member>\r
3679         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.#ctor">\r
3680             <summary>\r
3681             Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/> class.\r
3682             </summary>\r
3683         </member>\r
3684         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.#ctor(System.Int32)">\r
3685             <summary>\r
3686             Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/> class.\r
3687             </summary>\r
3688         </member>\r
3689         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.#ctor(Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary)">\r
3690             <summary>\r
3691             Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/> class by using values that are copied\r
3692             from the specified <paramref name="dictionary"/>.\r
3693             </summary>\r
3694             <param name="dictionary">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/> to copy values from.</param>\r
3695         </member>\r
3696         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Root">\r
3697             <summary>\r
3698             Root entry for the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>.\r
3699             </summary>\r
3700         </member>\r
3701         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.MaxAllowedErrors">\r
3702             <summary>\r
3703             Gets or sets the maximum allowed model state errors in this instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>.\r
3704             Defaults to <c>200</c>.\r
3705             </summary>\r
3706             <remarks>\r
3707             <para>\r
3708             <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/> tracks the number of model errors added by calls to\r
3709             <see cref="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.AddModelError(System.String,System.Exception,Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata)"/> or\r
3710             <see cref="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.TryAddModelError(System.String,System.Exception,Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata)"/>.\r
3711             Once the value of <code>MaxAllowedErrors - 1</code> is reached, if another attempt is made to add an error,\r
3712             the error message will be ignored and a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.TooManyModelErrorsException"/> will be added.\r
3713             </para>\r
3714             <para>\r
3715             Errors added via modifying <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> directly do not count towards this limit.\r
3716             </para>\r
3717             </remarks>\r
3718         </member>\r
3719         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.HasReachedMaxErrors">\r
3720             <summary>\r
3721             Gets a value indicating whether or not the maximum number of errors have been\r
3722             recorded.\r
3723             </summary>\r
3724             <remarks>\r
3725             Returns <c>true</c> if a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.TooManyModelErrorsException"/> has been recorded;\r
3726             otherwise <c>false</c>.\r
3727             </remarks>\r
3728         </member>\r
3729         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ErrorCount">\r
3730             <summary>\r
3731             Gets the number of errors added to this instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/> via\r
3732             <see cref="M:AddModelError"/> or <see cref="M:TryAddModelError"/>.\r
3733             </summary>\r
3734         </member>\r
3735         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Count">\r
3736             <inheritdoc />\r
3737         </member>\r
3738         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Keys">\r
3739             <summary>\r
3740             Gets the key sequence.\r
3741             </summary>\r
3742         </member>\r
3743         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.System#Collections#Generic#IReadOnlyDictionary{System#String,Microsoft#AspNetCore#Mvc#ModelBinding#ModelStateEntry}#Keys">\r
3744             <inheritdoc />\r
3745         </member>\r
3746         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Values">\r
3747             <summary>\r
3748             Gets the value sequence.\r
3749             </summary>\r
3750         </member>\r
3751         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.System#Collections#Generic#IReadOnlyDictionary{System#String,Microsoft#AspNetCore#Mvc#ModelBinding#ModelStateEntry}#Values">\r
3752             <inheritdoc />\r
3753         </member>\r
3754         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.IsValid">\r
3755             <summary>\r
3756             Gets a value that indicates whether any model state values in this model state dictionary is invalid or not validated.\r
3757             </summary>\r
3758         </member>\r
3759         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValidationState">\r
3760             <inheritdoc />\r
3761         </member>\r
3762         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Item(System.String)">\r
3763             <inheritdoc />\r
3764         </member>\r
3765         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.TryAddModelException(System.String,System.Exception)">\r
3766             <summary>\r
3767             Adds the specified <paramref name="exception"/> to the <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry.Errors"/> instance\r
3768             that is associated with the specified <paramref name="key"/>. If the maximum number of allowed\r
3769             errors has already been recorded, ensures that a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.TooManyModelErrorsException"/> exception is\r
3770             recorded instead.\r
3771             </summary>\r
3772             <remarks>\r
3773             This method allows adding the <paramref name="exception"/> to the current <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>\r
3774             when <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> is not available or the exact <paramref name="exception"/>\r
3775             must be maintained for later use (even if it is for example a <see cref="T:System.FormatException"/>).\r
3776             Where <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> is available, use <see cref="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.AddModelError(System.String,System.Exception,Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata)"/> instead.\r
3777             </remarks>\r
3778             <param name="key">The key of the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> to add errors to.</param>\r
3779             <param name="exception">The <see cref="T:System.Exception"/> to add.</param>\r
3780             <returns>\r
3781             <c>True</c> if the given error was added, <c>false</c> if the error was ignored.\r
3782             See <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.MaxAllowedErrors"/>.\r
3783             </returns>\r
3784         </member>\r
3785         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.AddModelError(System.String,System.Exception,Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata)">\r
3786             <summary>\r
3787             Adds the specified <paramref name="exception"/> to the <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry.Errors"/> instance\r
3788             that is associated with the specified <paramref name="key"/>. If the maximum number of allowed\r
3789             errors has already been recorded, ensures that a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.TooManyModelErrorsException"/> exception is\r
3790             recorded instead.\r
3791             </summary>\r
3792             <param name="key">The key of the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> to add errors to.</param>\r
3793             <param name="exception">The <see cref="T:System.Exception"/> to add. Some exception types will be replaced with\r
3794             a descriptive error message.</param>\r
3795             <param name="metadata">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> associated with the model.</param>\r
3796         </member>\r
3797         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.TryAddModelError(System.String,System.Exception,Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata)">\r
3798             <summary>\r
3799             Attempts to add the specified <paramref name="exception"/> to the <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry.Errors"/>\r
3800             instance that is associated with the specified <paramref name="key"/>. If the maximum number of allowed\r
3801             errors has already been recorded, ensures that a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.TooManyModelErrorsException"/> exception is\r
3802             recorded instead.\r
3803             </summary>\r
3804             <param name="key">The key of the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> to add errors to.</param>\r
3805             <param name="exception">The <see cref="T:System.Exception"/> to add. Some exception types will be replaced with\r
3806             a descriptive error message.</param>\r
3807             <param name="metadata">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> associated with the model.</param>\r
3808             <returns>\r
3809             <c>True</c> if the given error was added, <c>false</c> if the error was ignored.\r
3810             See <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.MaxAllowedErrors"/>.\r
3811             </returns>\r
3812         </member>\r
3813         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.AddModelError(System.String,System.String)">\r
3814             <summary>\r
3815             Adds the specified <paramref name="errorMessage"/> to the <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry.Errors"/> instance\r
3816             that is associated with the specified <paramref name="key"/>. If the maximum number of allowed\r
3817             errors has already been recorded, ensures that a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.TooManyModelErrorsException"/> exception is\r
3818             recorded instead.\r
3819             </summary>\r
3820             <param name="key">The key of the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> to add errors to.</param>\r
3821             <param name="errorMessage">The error message to add.</param>\r
3822         </member>\r
3823         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.TryAddModelError(System.String,System.String)">\r
3824             <summary>\r
3825             Attempts to add the specified <paramref name="errorMessage"/> to the <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry.Errors"/>\r
3826             instance that is associated with the specified <paramref name="key"/>. If the maximum number of allowed\r
3827             errors has already been recorded, ensures that a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.TooManyModelErrorsException"/> exception is\r
3828             recorded instead.\r
3829             </summary>\r
3830             <param name="key">The key of the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> to add errors to.</param>\r
3831             <param name="errorMessage">The error message to add.</param>\r
3832             <returns>\r
3833             <c>True</c> if the given error was added, <c>false</c> if the error was ignored.\r
3834             See <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.MaxAllowedErrors"/>.\r
3835             </returns>\r
3836         </member>\r
3837         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.GetFieldValidationState(System.String)">\r
3838             <summary>\r
3839             Returns the aggregate <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState"/> for items starting with the\r
3840             specified <paramref name="key"/>.\r
3841             </summary>\r
3842             <param name="key">The key to look up model state errors for.</param>\r
3843             <returns>Returns <see cref="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Unvalidated"/> if no entries are found for the specified\r
3844             key, <see cref="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Invalid"/> if at least one instance is found with one or more model\r
3845             state errors; <see cref="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Valid"/> otherwise.</returns>\r
3846         </member>\r
3847         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.GetValidationState(System.String)">\r
3848             <summary>\r
3849             Returns <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState"/> for the <paramref name="key"/>.\r
3850             </summary>\r
3851             <param name="key">The key to look up model state errors for.</param>\r
3852             <returns>Returns <see cref="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Unvalidated"/> if no entry is found for the specified\r
3853             key, <see cref="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Invalid"/> if an instance is found with one or more model\r
3854             state errors; <see cref="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Valid"/> otherwise.</returns>\r
3855         </member>\r
3856         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.MarkFieldValid(System.String)">\r
3857             <summary>\r
3858             Marks the <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry.ValidationState"/> for the entry with the specified\r
3859             <paramref name="key"/> as <see cref="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Valid"/>.\r
3860             </summary>\r
3861             <param name="key">The key of the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> to mark as valid.</param>\r
3862         </member>\r
3863         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.MarkFieldSkipped(System.String)">\r
3864             <summary>\r
3865             Marks the <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry.ValidationState"/> for the entry with the specified <paramref name="key"/>\r
3866             as <see cref="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Skipped"/>.\r
3867             </summary>\r
3868             <param name="key">The key of the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> to mark as skipped.</param>\r
3869         </member>\r
3870         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Merge(Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary)">\r
3871             <summary>\r
3872             Copies the values from the specified <paramref name="dictionary"/> into this instance, overwriting\r
3873             existing values if keys are the same.\r
3874             </summary>\r
3875             <param name="dictionary">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/> to copy values from.</param>\r
3876         </member>\r
3877         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.SetModelValue(System.String,System.Object,System.String)">\r
3878             <summary>\r
3879             Sets the of <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry.RawValue"/> and <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry.AttemptedValue"/> for\r
3880             the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> with the specified <paramref name="key"/>.\r
3881             </summary>\r
3882             <param name="key">The key for the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> entry.</param>\r
3883             <param name="rawValue">The raw value for the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> entry.</param>\r
3884             <param name="attemptedValue">\r
3885             The values of <paramref name="rawValue"/> in a comma-separated <see cref="T:System.String"/>.\r
3886             </param>\r
3887         </member>\r
3888         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.SetModelValue(System.String,Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult)">\r
3889             <summary>\r
3890             Sets the value for the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> with the specified <paramref name="key"/>.\r
3891             </summary>\r
3892             <param name="key">The key for the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> entry</param>\r
3893             <param name="valueProviderResult">\r
3894             A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult"/> with data for the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> entry.\r
3895             </param>\r
3896         </member>\r
3897         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ClearValidationState(System.String)">\r
3898             <summary>\r
3899             Clears <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/> entries that match the key that is passed as parameter.\r
3900             </summary>\r
3901             <param name="key">The key of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/> to clear.</param>\r
3902         </member>\r
3903         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Clear">\r
3904             <summary>\r
3905             Removes all keys and values from this instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>.\r
3906             </summary>\r
3907         </member>\r
3908         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ContainsKey(System.String)">\r
3909             <inheritdoc />\r
3910         </member>\r
3911         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Remove(System.String)">\r
3912             <summary>\r
3913             Removes the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> with the specified <paramref name="key"/>.\r
3914             </summary>\r
3915             <param name="key">The key.</param>\r
3916             <returns><c>true</c> if the element is successfully removed; otherwise <c>false</c>. This method also\r
3917             returns <c>false</c> if key was not found.</returns>\r
3918         </member>\r
3919         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.TryGetValue(System.String,Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry@)">\r
3920             <inheritdoc />\r
3921         </member>\r
3922         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.GetEnumerator">\r
3923             <summary>\r
3924             Returns an enumerator that iterates through this instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>.\r
3925             </summary>\r
3926             <returns>An <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Enumerator"/>.</returns>\r
3927         </member>\r
3928         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.System#Collections#Generic#IEnumerable{System#Collections#Generic#KeyValuePair{System#String,Microsoft#AspNetCore#Mvc#ModelBinding#ModelStateEntry}}#GetEnumerator">\r
3929             <inheritdoc />\r
3930         </member>\r
3931         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.System#Collections#IEnumerable#GetEnumerator">\r
3932             <inheritdoc />\r
3933         </member>\r
3934         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.StartsWithPrefix(System.String,System.String)">\r
3935             <summary>\r
3936             <para>\r
3937             This API supports the MVC's infrastructure and is not intended to be used\r
3938             directly from your code. This API may change or be removed in future releases.\r
3939             </para>\r
3940             </summary>\r
3941         </member>\r
3942         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.FindKeysWithPrefix(System.String)">\r
3943             <summary>\r
3944             Gets a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.PrefixEnumerable"/> that iterates over this instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>\r
3945             using the specified <paramref name="prefix"/>.\r
3946             </summary>\r
3947             <param name="prefix">The prefix.</param>\r
3948             <returns>The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.PrefixEnumerable"/>.</returns>\r
3949         </member>\r
3950         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.PrefixEnumerable">\r
3951             <summary>\r
3952             Enumerates over <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/> to provide entries that start with the\r
3953             specified prefix.\r
3954             </summary>\r
3955         </member>\r
3956         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.PrefixEnumerable.#ctor(Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary,System.String)">\r
3957             <summary>\r
3958             Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.PrefixEnumerable"/>.\r
3959             </summary>\r
3960             <param name="dictionary">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>.</param>\r
3961             <param name="prefix">The prefix.</param>\r
3962         </member>\r
3963         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.PrefixEnumerable.GetEnumerator">\r
3964             <inheritdoc />\r
3965         </member>\r
3966         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Enumerator">\r
3967             <summary>\r
3968             An <see cref="T:System.Collections.Generic.IEnumerator`1"/> for <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.PrefixEnumerable"/>.\r
3969             </summary>\r
3970         </member>\r
3971         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Enumerator.#ctor(Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary,System.String)">\r
3972             <summary>\r
3973             Intializes a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Enumerator"/>.\r
3974             </summary>\r
3975             <param name="dictionary">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>.</param>\r
3976             <param name="prefix">The prefix.</param>\r
3977         </member>\r
3978         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Enumerator.Current">\r
3979             <inheritdoc />\r
3980         </member>\r
3981         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Enumerator.Dispose">\r
3982             <inheritdoc />\r
3983         </member>\r
3984         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Enumerator.MoveNext">\r
3985             <inheritdoc />\r
3986         </member>\r
3987         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Enumerator.Reset">\r
3988             <inheritdoc />\r
3989         </member>\r
3990         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerable">\r
3991             <summary>\r
3992             A <see cref="T:System.Collections.Generic.IEnumerable`1"/> for keys in <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>.\r
3993             </summary>\r
3994         </member>\r
3995         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerable.#ctor(Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary)">\r
3996             <summary>\r
3997             Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerable"/>.\r
3998             </summary>\r
3999             <param name="dictionary">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>.</param>\r
4000         </member>\r
4001         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerable.GetEnumerator">\r
4002             <inheritdoc />\r
4003         </member>\r
4004         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerator">\r
4005             <summary>\r
4006             An <see cref="T:System.Collections.Generic.IEnumerator`1"/> for keys in <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>.\r
4007             </summary>\r
4008         </member>\r
4009         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerator.#ctor(Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary,System.String)">\r
4010             <summary>\r
4011             Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerable"/>.\r
4012             </summary>\r
4013             <param name="dictionary">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>.</param>\r
4014             <param name="prefix">The prefix.</param>\r
4015         </member>\r
4016         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerator.Current">\r
4017             <inheritdoc />\r
4018         </member>\r
4019         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerator.Dispose">\r
4020             <inheritdoc />\r
4021         </member>\r
4022         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerator.MoveNext">\r
4023             <inheritdoc />\r
4024         </member>\r
4025         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.KeyEnumerator.Reset">\r
4026             <inheritdoc />\r
4027         </member>\r
4028         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerable">\r
4029             <summary>\r
4030             An <see cref="T:System.Collections.IEnumerable"/> for <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/>.\r
4031             </summary>\r
4032         </member>\r
4033         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerable.#ctor(Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary)">\r
4034             <summary>\r
4035             Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerable"/>.\r
4036             </summary>\r
4037             <param name="dictionary">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>.</param>\r
4038         </member>\r
4039         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerable.GetEnumerator">\r
4040             <inheritdoc />\r
4041         </member>\r
4042         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerator">\r
4043             <summary>\r
4044             An enumerator for <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/>.\r
4045             </summary>\r
4046         </member>\r
4047         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerator.#ctor(Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary,System.String)">\r
4048             <summary>\r
4049             Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerator"/>.\r
4050             </summary>\r
4051             <param name="dictionary">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>.</param>\r
4052             <param name="prefix">The prefix to enumerate.</param>\r
4053         </member>\r
4054         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerator.Current">\r
4055             <inheritdoc />\r
4056         </member>\r
4057         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerator.Dispose">\r
4058             <inheritdoc />\r
4059         </member>\r
4060         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerator.MoveNext">\r
4061             <inheritdoc />\r
4062         </member>\r
4063         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.ValueEnumerator.Reset">\r
4064             <inheritdoc />\r
4065         </member>\r
4066         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry">\r
4067             <summary>\r
4068             An entry in a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>.\r
4069             </summary>\r
4070         </member>\r
4071         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry.RawValue">\r
4072             <summary>\r
4073             Gets the raw value from the request associated with this entry.\r
4074             </summary>\r
4075         </member>\r
4076         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry.AttemptedValue">\r
4077             <summary>\r
4078             Gets the set of values contained in <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry.RawValue"/>, joined into a comma-separated string.\r
4079             </summary>\r
4080         </member>\r
4081         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry.Errors">\r
4082             <summary>\r
4083             Gets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelErrorCollection"/> for this entry.\r
4084             </summary>\r
4085         </member>\r
4086         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry.ValidationState">\r
4087             <summary>\r
4088             Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState"/> for this entry.\r
4089             </summary>\r
4090         </member>\r
4091         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry.IsContainerNode">\r
4092             <summary>\r
4093             Gets a value that determines if the current instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> is a container node.\r
4094             Container nodes represent prefix nodes that aren't explicitly added to the\r
4095             <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>.\r
4096             </summary>\r
4097         </member>\r
4098         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry.GetModelStateForProperty(System.String)">\r
4099             <summary>\r
4100             Gets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> for a sub-property with the specified\r
4101             <paramref name="propertyName"/>.\r
4102             </summary>\r
4103             <param name="propertyName">The property name to lookup.</param>\r
4104             <returns>\r
4105             The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> if a sub-property was found; otherwise <see langword="null"/>.\r
4106             </returns>\r
4107             <remarks>\r
4108             This method returns any existing entry, even those with <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry.IsContainerNode"/> with value\r
4109             <see langword="true"/>.\r
4110             </remarks>\r
4111         </member>\r
4112         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry.Children">\r
4113             <summary>\r
4114             Gets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> values for sub-properties.\r
4115             </summary>\r
4116             <remarks>\r
4117             This property returns all existing entries, even those with <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry.IsContainerNode"/> with value\r
4118             <see langword="true"/>.\r
4119             </remarks>\r
4120         </member>\r
4121         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState">\r
4122             <summary>\r
4123             The validation state of a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> instance.\r
4124             <para>\r
4125             <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState"/> of <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.Root"/> is used to determine the validity\r
4126             of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary"/>. <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.IsValid"/> is <see langword="true" />, when\r
4127             the aggregate validity (<see cref="M:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateDictionary.GetFieldValidationState(System.String)"/>) \r
4128             of the root node is <see cref="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Valid"/>.\r
4129             </para>\r
4130             </summary>\r
4131         </member>\r
4132         <member name="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Unvalidated">\r
4133             <summary>\r
4134             Validation has not been performed on the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/>.\r
4135             <para>\r
4136             For aggregate validity, the validation of a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> is <see cref="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Unvalidated"/>\r
4137             if either the entry or one of thedescendants is <see cref="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Unvalidated"/>.\r
4138             </para>\r
4139             </summary>\r
4140         </member>\r
4141         <member name="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Invalid">\r
4142             <summary>\r
4143             Validation was performed on the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> and was found to be invalid.\r
4144             <para>\r
4145             For aggregate validity, the validation of a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> is <see cref="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Invalid"/>\r
4146             if either the entry or one of the descendants is <see cref="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Invalid"/> and none are <see cref="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Unvalidated"/>.\r
4147             </para>\r
4148             </summary>\r
4149         </member>\r
4150         <member name="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Valid">\r
4151             <summary>\r
4152             Validation was performed on the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/>\r
4153             <para>\r
4154             For aggregate validity, the validation of a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/> is <see cref="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Valid"/>\r
4155             if the validity of the entry and all descendants is either <see cref="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Valid"/> or <see cref="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Skipped"/>.\r
4156             </para>\r
4157             </summary>\r
4158         </member>\r
4159         <member name="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Skipped">\r
4160             <summary>\r
4161             Validation was skipped for the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelStateEntry"/>.\r
4162             <para>\r
4163             The aggregate validity of an entry is never <see cref="F:Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState.Skipped"/>.\r
4164             </para>\r
4165             </summary>\r
4166         </member>\r
4167         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.TooManyModelErrorsException">\r
4168             <summary>\r
4169             The <see cref="T:System.Exception"/> that is thrown when too many model errors are encountered.\r
4170             </summary>\r
4171         </member>\r
4172         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.TooManyModelErrorsException.#ctor(System.String)">\r
4173             <summary>\r
4174             Creates a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.TooManyModelErrorsException"/> with the specified\r
4175             exception <paramref name="message"/>.\r
4176             </summary>\r
4177             <param name="message">The message that describes the error.</param>\r
4178         </member>\r
4179         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientModelValidationContext">\r
4180             <summary>\r
4181             The context for client-side model validation.\r
4182             </summary>\r
4183         </member>\r
4184         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientModelValidationContext.#ctor(Microsoft.AspNetCore.Mvc.ActionContext,Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata,Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider,System.Collections.Generic.IDictionary{System.String,System.String})">\r
4185             <summary>\r
4186             Create a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientModelValidationContext"/>.\r
4187             </summary>\r
4188             <param name="actionContext">The <see cref="T:Microsoft.AspNetCore.Mvc.ActionContext"/> for validation.</param>\r
4189             <param name="metadata">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> for validation.</param>\r
4190             <param name="metadataProvider">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider"/> to be used in validation.</param>\r
4191             <param name="attributes">The attributes dictionary for the HTML tag being rendered.</param>\r
4192         </member>\r
4193         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientModelValidationContext.Attributes">\r
4194             <summary>\r
4195             Gets the attributes dictionary for the HTML tag being rendered.\r
4196             </summary>\r
4197         </member>\r
4198         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorItem">\r
4199             <summary>\r
4200             Used to associate validators with <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorItem.ValidatorMetadata"/> instances\r
4201             as part of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorProviderContext"/>. An <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IClientModelValidator"/> should\r
4202             inspect <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorProviderContext.Results"/> and set <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorItem.Validator"/> and\r
4203             <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorItem.IsReusable"/> as appropriate.\r
4204             </summary>\r
4205         </member>\r
4206         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorItem.#ctor">\r
4207             <summary>\r
4208             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorItem"/>.\r
4209             </summary>\r
4210         </member>\r
4211         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorItem.#ctor(System.Object)">\r
4212             <summary>\r
4213             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorItem"/>.\r
4214             </summary>\r
4215             <param name="validatorMetadata">The <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorItem.ValidatorMetadata"/>.</param>\r
4216         </member>\r
4217         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorItem.ValidatorMetadata">\r
4218             <summary>\r
4219             Gets the metadata associated with the <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorItem.Validator"/>.\r
4220             </summary>\r
4221         </member>\r
4222         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorItem.Validator">\r
4223             <summary>\r
4224             Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IClientModelValidator"/>.\r
4225             </summary>\r
4226         </member>\r
4227         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorItem.IsReusable">\r
4228             <summary>\r
4229             Gets or sets a value indicating whether or not <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorItem.Validator"/> can be reused across requests.\r
4230             </summary>\r
4231         </member>\r
4232         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorProviderContext">\r
4233             <summary>\r
4234             A context for <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IClientModelValidatorProvider"/>.\r
4235             </summary>\r
4236         </member>\r
4237         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorProviderContext.#ctor(Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata,System.Collections.Generic.IList{Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorItem})">\r
4238             <summary>\r
4239             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorProviderContext"/>.\r
4240             </summary>\r
4241             <param name="modelMetadata">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> for the model being validated.\r
4242             </param>\r
4243             <param name="items">The list of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorItem"/>s.</param>\r
4244         </member>\r
4245         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorProviderContext.ModelMetadata">\r
4246             <summary>\r
4247             Gets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/>.\r
4248             </summary>\r
4249         </member>\r
4250         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorProviderContext.ValidatorMetadata">\r
4251             <summary>\r
4252             Gets the validator metadata.\r
4253             </summary>\r
4254             <remarks>\r
4255             This property provides convenience access to <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ValidatorMetadata"/>.\r
4256             </remarks>\r
4257         </member>\r
4258         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorProviderContext.Results">\r
4259             <summary>\r
4260             Gets the list of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorItem"/> instances. <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IClientModelValidatorProvider"/>\r
4261             instances should add the appropriate <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorItem.Validator"/> properties when\r
4262             <see cref="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IClientModelValidatorProvider.CreateValidators(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorProviderContext)"/>\r
4263             is called.\r
4264             </summary>\r
4265         </member>\r
4266         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IClientModelValidator">\r
4267             <summary>\r
4268             Specifies the contract for performing validation in the browser.\r
4269             <para>\r
4270             MVC's validation system invokes <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IClientModelValidator"/> to gather attributes that apply to the\r
4271             rendered HTML. The rendered view may have to reference JavaScript libraries, such as jQuery Unobtrusive Validation,\r
4272             to provide client validation based on the presence of these attributes.\r
4273             </para>\r
4274             </summary>\r
4275         </member>\r
4276         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IClientModelValidator.AddValidation(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientModelValidationContext)">\r
4277             <summary>\r
4278             Called to add client-side model validation.\r
4279             </summary>\r
4280             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientModelValidationContext"/>.</param>\r
4281         </member>\r
4282         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IClientModelValidatorProvider">\r
4283             <summary>\r
4284             Provides a collection of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IClientModelValidator"/>s.\r
4285             </summary>\r
4286         </member>\r
4287         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IClientModelValidatorProvider.CreateValidators(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorProviderContext)">\r
4288             <summary>\r
4289             Creates set of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IClientModelValidator"/>s by updating\r
4290             <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorItem.Validator"/> in <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientValidatorProviderContext.Results"/>.\r
4291             </summary>\r
4292             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientModelValidationContext"/> associated with this call.</param>\r
4293         </member>\r
4294         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IModelValidator">\r
4295             <summary>\r
4296             Validates a model value.\r
4297             </summary>\r
4298         </member>\r
4299         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IModelValidator.Validate(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContext)">\r
4300             <summary>\r
4301             Validates the model value.\r
4302             </summary>\r
4303             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContext"/>.</param>\r
4304             <returns>\r
4305             A list of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationResult"/> indicating the results of validating the model value.\r
4306             </returns>\r
4307         </member>\r
4308         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IModelValidatorProvider">\r
4309             <summary>\r
4310             Provides validators for a model value.\r
4311             </summary>\r
4312         </member>\r
4313         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IModelValidatorProvider.CreateValidators(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidatorProviderContext)">\r
4314             <summary>\r
4315             Creates the validators for <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidatorProviderContext.ModelMetadata"/>.\r
4316             </summary>\r
4317             <param name="context">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidatorProviderContext"/>.</param>\r
4318             <remarks>\r
4319             Implementations should add the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IModelValidator"/> instances to the appropriate\r
4320             <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorItem"/> instance which should be added to\r
4321             <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidatorProviderContext.Results"/>.\r
4322             </remarks>\r
4323         </member>\r
4324         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IPropertyValidationFilter">\r
4325             <summary>\r
4326             Contract for attributes that determine whether associated properties should be validated. When the attribute is\r
4327             applied to a property, the validation system calls <see cref="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IPropertyValidationFilter.ShouldValidateEntry(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry,Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry)"/> to determine whether to\r
4328             validate that property. When applied to a type, the validation system calls <see cref="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IPropertyValidationFilter.ShouldValidateEntry(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry,Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry)"/>\r
4329             for each property that type defines to determine whether to validate it.\r
4330             </summary>\r
4331         </member>\r
4332         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IPropertyValidationFilter.ShouldValidateEntry(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry,Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry)">\r
4333             <summary>\r
4334             Gets an indication whether the <paramref name="entry"/> should be validated.\r
4335             </summary>\r
4336             <param name="entry"><see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry"/> to check.</param>\r
4337             <param name="parentEntry"><see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry"/> containing <paramref name="entry"/>.</param>\r
4338             <returns><c>true</c> if <paramref name="entry"/> should be validated; <c>false</c> otherwise.</returns>\r
4339         </member>\r
4340         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IValidationStrategy">\r
4341             <summary>\r
4342             Defines a strategy for enumerating the child entries of a model object which should be validated.\r
4343             </summary>\r
4344         </member>\r
4345         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IValidationStrategy.GetChildren(Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata,System.String,System.Object)">\r
4346             <summary>\r
4347             Gets an <see cref="T:System.Collections.Generic.IEnumerator`1"/> containing a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry"/> for\r
4348             each child entry of the model object to be validated.\r
4349             </summary>\r
4350             <param name="metadata">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> associated with <paramref name="model"/>.</param>\r
4351             <param name="key">The model prefix associated with <paramref name="model"/>.</param>\r
4352             <param name="model">The model object.</param>\r
4353             <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1"/>.</returns>\r
4354         </member>\r
4355         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContext">\r
4356             <summary>\r
4357             A context object for <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IModelValidator"/>.\r
4358             </summary>\r
4359         </member>\r
4360         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContext.#ctor(Microsoft.AspNetCore.Mvc.ActionContext,Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata,Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider,System.Object,System.Object)">\r
4361             <summary>\r
4362             Create a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContext"/>.\r
4363             </summary>\r
4364             <param name="actionContext">The <see cref="T:Microsoft.AspNetCore.Mvc.ActionContext"/> for validation.</param>\r
4365             <param name="modelMetadata">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> for validation.</param>\r
4366             <param name="metadataProvider">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider"/> to be used in validation.</param>\r
4367             <param name="container">The model container.</param>\r
4368             <param name="model">The model to be validated.</param>\r
4369         </member>\r
4370         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContext.Model">\r
4371             <summary>\r
4372             Gets the model object.\r
4373             </summary>\r
4374         </member>\r
4375         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContext.Container">\r
4376             <summary>\r
4377             Gets the model container object.\r
4378             </summary>\r
4379         </member>\r
4380         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContextBase">\r
4381             <summary>\r
4382             A common base class for <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContext"/> and <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ClientModelValidationContext"/>.\r
4383             </summary>\r
4384         </member>\r
4385         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContextBase.#ctor(Microsoft.AspNetCore.Mvc.ActionContext,Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata,Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider)">\r
4386             <summary>\r
4387             Instantiates a new <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContextBase"/>.\r
4388             </summary>\r
4389             <param name="actionContext">The <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContextBase.ActionContext"/> for this context.</param>\r
4390             <param name="modelMetadata">The <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContextBase.ModelMetadata"/> for this model.</param>\r
4391             <param name="metadataProvider">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider"/> to be used by this context.</param>\r
4392         </member>\r
4393         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContextBase.ActionContext">\r
4394             <summary>\r
4395             Gets the <see cref="T:Microsoft.AspNetCore.Mvc.ActionContext"/>.\r
4396             </summary>\r
4397         </member>\r
4398         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContextBase.ModelMetadata">\r
4399             <summary>\r
4400             Gets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/>.\r
4401             </summary>\r
4402         </member>\r
4403         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationContextBase.MetadataProvider">\r
4404             <summary>\r
4405             Gets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IModelMetadataProvider"/>.\r
4406             </summary>\r
4407         </member>\r
4408         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationResult">\r
4409             <summary>\r
4410             The result of model validation.\r
4411             </summary>\r
4412         </member>\r
4413         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationResult.#ctor(System.String,System.String)">\r
4414             <summary>\r
4415             Initializes a new instance of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationResult"/>.\r
4416             </summary>\r
4417             <param name="memberName">The name of the entry on which validation was performed.</param>\r
4418             <param name="message">The validation message.</param>\r
4419         </member>\r
4420         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationResult.MemberName">\r
4421             <summary>\r
4422             Gets the name of the entry on which validation was performed.\r
4423             </summary>\r
4424         </member>\r
4425         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidationResult.Message">\r
4426             <summary>\r
4427             Gets the validation message.\r
4428             </summary>\r
4429         </member>\r
4430         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidatorProviderContext">\r
4431             <summary>\r
4432             A context for <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IModelValidatorProvider"/>.\r
4433             </summary>\r
4434         </member>\r
4435         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidatorProviderContext.#ctor(Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata,System.Collections.Generic.IList{Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorItem})">\r
4436             <summary>\r
4437             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidatorProviderContext"/>.\r
4438             </summary>\r
4439             <param name="modelMetadata">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/>.</param>\r
4440             <param name="items">The list of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorItem"/>s.</param>\r
4441         </member>\r
4442         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidatorProviderContext.ModelMetadata">\r
4443             <summary>\r
4444             Gets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/>.\r
4445             </summary>\r
4446         </member>\r
4447         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidatorProviderContext.ValidatorMetadata">\r
4448             <summary>\r
4449             Gets the validator metadata.\r
4450             </summary>\r
4451             <remarks>\r
4452             This property provides convenience access to <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata.ValidatorMetadata"/>.\r
4453             </remarks>\r
4454         </member>\r
4455         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidatorProviderContext.Results">\r
4456             <summary>\r
4457             Gets the list of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorItem"/> instances. <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IModelValidatorProvider"/> instances\r
4458             should add the appropriate <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorItem.Validator"/> properties when\r
4459             <see cref="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IModelValidatorProvider.CreateValidators(Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidatorProviderContext)"/>\r
4460             is called.\r
4461             </summary>\r
4462         </member>\r
4463         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry">\r
4464             <summary>\r
4465             Contains data needed for validating a child entry of a model object. See <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IValidationStrategy"/>.\r
4466             </summary>\r
4467         </member>\r
4468         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry.#ctor(Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata,System.String,System.Object)">\r
4469             <summary>\r
4470             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry"/>.\r
4471             </summary>\r
4472             <param name="metadata">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> associated with <paramref name="model"/>.</param>\r
4473             <param name="key">The model prefix associated with <paramref name="model"/>.</param>\r
4474             <param name="model">The model object.</param>\r
4475         </member>\r
4476         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry.#ctor(Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata,System.String,System.Func{System.Object})">\r
4477             <summary>\r
4478             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry"/>.\r
4479             </summary>\r
4480             <param name="metadata">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> associated with the <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry.Model"/>.</param>\r
4481             <param name="key">The model prefix associated with the <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry.Model"/>.</param>\r
4482             <param name="modelAccessor">A delegate that will return the <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry.Model"/>.</param>\r
4483         </member>\r
4484         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry.Key">\r
4485             <summary>\r
4486             The model prefix associated with <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry.Model"/>.\r
4487             </summary>\r
4488         </member>\r
4489         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry.Metadata">\r
4490             <summary>\r
4491             The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> associated with <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry.Model"/>.\r
4492             </summary>\r
4493         </member>\r
4494         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry.Model">\r
4495             <summary>\r
4496             The model object.\r
4497             </summary>\r
4498         </member>\r
4499         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary">\r
4500             <summary>\r
4501             Used for tracking validation state to customize validation behavior for a model object.\r
4502             </summary>\r
4503         </member>\r
4504         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary.#ctor">\r
4505             <summary>\r
4506             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary"/>.\r
4507             </summary>\r
4508         </member>\r
4509         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary.Item(System.Object)">\r
4510             <inheritdoc />\r
4511         </member>\r
4512         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary.Count">\r
4513             <inheritdoc />\r
4514         </member>\r
4515         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary.IsReadOnly">\r
4516             <inheritdoc />\r
4517         </member>\r
4518         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary.Keys">\r
4519             <inheritdoc />\r
4520         </member>\r
4521         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary.Values">\r
4522             <inheritdoc />\r
4523         </member>\r
4524         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary.System#Collections#Generic#IReadOnlyDictionary{System#Object,Microsoft#AspNetCore#Mvc#ModelBinding#Validation#ValidationStateEntry}#Keys">\r
4525             <inheritdoc />\r
4526         </member>\r
4527         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary.System#Collections#Generic#IReadOnlyDictionary{System#Object,Microsoft#AspNetCore#Mvc#ModelBinding#Validation#ValidationStateEntry}#Values">\r
4528             <inheritdoc />\r
4529         </member>\r
4530         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary.Add(System.Collections.Generic.KeyValuePair{System.Object,Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateEntry})">\r
4531             <inheritdoc />\r
4532         </member>\r
4533         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary.Add(System.Object,Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateEntry)">\r
4534             <inheritdoc />\r
4535         </member>\r
4536         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary.Clear">\r
4537             <inheritdoc />\r
4538         </member>\r
4539         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary.Contains(System.Collections.Generic.KeyValuePair{System.Object,Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateEntry})">\r
4540             <inheritdoc />\r
4541         </member>\r
4542         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary.ContainsKey(System.Object)">\r
4543             <inheritdoc />\r
4544         </member>\r
4545         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary.CopyTo(System.Collections.Generic.KeyValuePair{System.Object,Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateEntry}[],System.Int32)">\r
4546             <inheritdoc />\r
4547         </member>\r
4548         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary.GetEnumerator">\r
4549             <inheritdoc />\r
4550         </member>\r
4551         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary.Remove(System.Collections.Generic.KeyValuePair{System.Object,Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateEntry})">\r
4552             <inheritdoc />\r
4553         </member>\r
4554         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary.Remove(System.Object)">\r
4555             <inheritdoc />\r
4556         </member>\r
4557         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary.TryGetValue(System.Object,Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateEntry@)">\r
4558             <inheritdoc />\r
4559         </member>\r
4560         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary.System#Collections#IEnumerable#GetEnumerator">\r
4561             <inheritdoc />\r
4562         </member>\r
4563         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateEntry">\r
4564             <summary>\r
4565             An entry in a <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateDictionary"/>. Records state information to override the default\r
4566             behavior of validation for an object.\r
4567             </summary>\r
4568         </member>\r
4569         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateEntry.Key">\r
4570             <summary>\r
4571             Gets or sets the model prefix associated with the entry.\r
4572             </summary>\r
4573         </member>\r
4574         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateEntry.Metadata">\r
4575             <summary>\r
4576             Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata"/> associated with the entry.\r
4577             </summary>\r
4578         </member>\r
4579         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateEntry.SuppressValidation">\r
4580             <summary>\r
4581             Gets or sets a value indicating whether the associated model object should be validated.\r
4582             </summary>\r
4583         </member>\r
4584         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationStateEntry.Strategy">\r
4585             <summary>\r
4586             Gets or sets an <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IValidationStrategy"/> for enumerating child entries of the associated\r
4587             model object.\r
4588             </summary>\r
4589         </member>\r
4590         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorItem">\r
4591             <summary>\r
4592             Used to associate validators with <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorItem.ValidatorMetadata"/> instances\r
4593             as part of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidatorProviderContext"/>. An <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IModelValidator"/> should\r
4594             inspect <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ModelValidatorProviderContext.Results"/> and set <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorItem.Validator"/> and\r
4595             <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorItem.IsReusable"/> as appropriate.\r
4596             </summary>\r
4597         </member>\r
4598         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorItem.#ctor">\r
4599             <summary>\r
4600             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorItem"/>.\r
4601             </summary>\r
4602         </member>\r
4603         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorItem.#ctor(System.Object)">\r
4604             <summary>\r
4605             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorItem"/>.\r
4606             </summary>\r
4607             <param name="validatorMetadata">The <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorItem.ValidatorMetadata"/>.</param>\r
4608         </member>\r
4609         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorItem.ValidatorMetadata">\r
4610             <summary>\r
4611             Gets the metadata associated with the <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorItem.Validator"/>.\r
4612             </summary>\r
4613         </member>\r
4614         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorItem.Validator">\r
4615             <summary>\r
4616             Gets or sets the <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.IModelValidator"/>.\r
4617             </summary>\r
4618         </member>\r
4619         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorItem.IsReusable">\r
4620             <summary>\r
4621             Gets or sets a value indicating whether or not <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidatorItem.Validator"/> can be reused across requests.\r
4622             </summary>\r
4623         </member>\r
4624         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderFactoryContext">\r
4625             <summary>\r
4626             A context for <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProviderFactory"/>.\r
4627             </summary>\r
4628         </member>\r
4629         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderFactoryContext.#ctor(Microsoft.AspNetCore.Mvc.ActionContext)">\r
4630             <summary>\r
4631             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderFactoryContext"/>.\r
4632             </summary>\r
4633             <param name="context">The <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderFactoryContext.ActionContext"/>.</param>\r
4634         </member>\r
4635         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderFactoryContext.ActionContext">\r
4636             <summary>\r
4637             Gets the <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderFactoryContext.ActionContext"/> associated with this context.\r
4638             </summary>\r
4639         </member>\r
4640         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderFactoryContext.ValueProviders">\r
4641             <summary>\r
4642             Gets the list of <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/> instances.\r
4643             <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProviderFactory"/> instances should add the appropriate\r
4644             <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider"/> instances to this list.\r
4645             </summary>\r
4646         </member>\r
4647         <member name="T:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult">\r
4648             <summary>\r
4649             Result of an <see cref="M:Microsoft.AspNetCore.Mvc.ModelBinding.IValueProvider.GetValue(System.String)"/> operation.\r
4650             </summary>\r
4651             <remarks>\r
4652             <para>\r
4653             <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult"/> can represent a single submitted value or multiple submitted values.\r
4654             </para>\r
4655             <para>\r
4656             Use <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.FirstValue"/> to consume only a single value, regardless of whether a single value or\r
4657             multiple values were submitted.\r
4658             </para>\r
4659             <para>\r
4660             Treat <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult"/> as an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to consume all values,\r
4661             regardless of whether a single value or multiple values were submitted.\r
4662             </para>\r
4663             </remarks>\r
4664         </member>\r
4665         <member name="F:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.None">\r
4666             <summary>\r
4667             A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult"/> that represents a lack of data.\r
4668             </summary>\r
4669         </member>\r
4670         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.#ctor(Microsoft.Extensions.Primitives.StringValues)">\r
4671             <summary>\r
4672             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult"/> using <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.\r
4673             </summary>\r
4674             <param name="values">The submitted values.</param>\r
4675         </member>\r
4676         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.#ctor(Microsoft.Extensions.Primitives.StringValues,System.Globalization.CultureInfo)">\r
4677             <summary>\r
4678             Creates a new <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult"/>.\r
4679             </summary>\r
4680             <param name="values">The submitted values.</param>\r
4681             <param name="culture">The <see cref="T:System.Globalization.CultureInfo"/> associated with this value.</param>\r
4682         </member>\r
4683         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.Culture">\r
4684             <summary>\r
4685             Gets or sets the <see cref="T:System.Globalization.CultureInfo"/> associated with the values.\r
4686             </summary>\r
4687         </member>\r
4688         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.Values">\r
4689             <summary>\r
4690             Gets or sets the values.\r
4691             </summary>\r
4692         </member>\r
4693         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.FirstValue">\r
4694             <summary>\r
4695             Gets the first value based on the order values were provided in the request. Use <see cref="P:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.FirstValue"/>\r
4696             to get a single value for processing regardless of whether a single or multiple values were provided\r
4697             in the request.\r
4698             </summary>\r
4699         </member>\r
4700         <member name="P:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.Length">\r
4701             <summary>\r
4702             Gets the number of submitted values.\r
4703             </summary>\r
4704         </member>\r
4705         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.Equals(System.Object)">\r
4706             <inheritdoc />\r
4707         </member>\r
4708         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.Equals(Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult)">\r
4709             <inheritdoc />\r
4710         </member>\r
4711         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.GetHashCode">\r
4712             <inheritdoc />\r
4713         </member>\r
4714         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.ToString">\r
4715             <inheritdoc />\r
4716         </member>\r
4717         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.GetEnumerator">\r
4718             <summary>\r
4719             Gets an <see cref="T:System.Collections.Generic.IEnumerator`1"/> for this <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult"/>.\r
4720             </summary>\r
4721             <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1"/>.</returns>\r
4722         </member>\r
4723         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.System#Collections#IEnumerable#GetEnumerator">\r
4724             <inheritdoc />\r
4725         </member>\r
4726         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.op_Explicit(Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult)~System.String">\r
4727             <summary>\r
4728             Converts the provided <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult"/> into a comma-separated string containing all\r
4729             submitted values.\r
4730             </summary>\r
4731             <param name="result">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult"/>.</param>\r
4732         </member>\r
4733         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.op_Explicit(Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult)~System.String[]">\r
4734             <summary>\r
4735             Converts the provided <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult"/> into a an array of <see cref="T:System.String"/> containing\r
4736             all submitted values.\r
4737             </summary>\r
4738             <param name="result">The <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult"/>.</param>\r
4739         </member>\r
4740         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.op_Equality(Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult,Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult)">\r
4741             <summary>\r
4742             Compares two <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult"/> objects for equality.\r
4743             </summary>\r
4744             <param name="x">A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult"/>.</param>\r
4745             <param name="y">A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult"/>.</param>\r
4746             <returns><c>true</c> if the values are equal, otherwise <c>false</c>.</returns>\r
4747         </member>\r
4748         <member name="M:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult.op_Inequality(Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult,Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult)">\r
4749             <summary>\r
4750             Compares two <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult"/> objects for inequality.\r
4751             </summary>\r
4752             <param name="x">A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult"/>.</param>\r
4753             <param name="y">A <see cref="T:Microsoft.AspNetCore.Mvc.ModelBinding.ValueProviderResult"/>.</param>\r
4754             <returns><c>false</c> if the values are equal, otherwise <c>true</c>.</returns>\r
4755         </member>\r
4756         <member name="T:Microsoft.AspNetCore.Mvc.Routing.AttributeRouteInfo">\r
4757             <summary>\r
4758             Represents the routing information for an action that is attribute routed.\r
4759             </summary>\r
4760         </member>\r
4761         <member name="P:Microsoft.AspNetCore.Mvc.Routing.AttributeRouteInfo.Template">\r
4762             <summary>\r
4763             The route template. May be null if the action has no attribute routes.\r
4764             </summary>\r
4765         </member>\r
4766         <member name="P:Microsoft.AspNetCore.Mvc.Routing.AttributeRouteInfo.Order">\r
4767             <summary>\r
4768             Gets the order of the route associated with a given action. This property determines\r
4769             the order in which routes get executed. Routes with a lower order value are tried first. In case a route\r
4770             doesn't specify a value, it gets a default order of 0.\r
4771             </summary>\r
4772         </member>\r
4773         <member name="P:Microsoft.AspNetCore.Mvc.Routing.AttributeRouteInfo.Name">\r
4774             <summary>\r
4775             Gets the name of the route associated with a given action. This property can be used\r
4776             to generate a link by referring to the route by name instead of attempting to match a\r
4777             route by provided route data.\r
4778             </summary>\r
4779         </member>\r
4780         <member name="P:Microsoft.AspNetCore.Mvc.Routing.AttributeRouteInfo.SuppressLinkGeneration">\r
4781             <summary>\r
4782             Gets or sets a value that determines if the route entry associated with this model participates in link generation.\r
4783             </summary>\r
4784         </member>\r
4785         <member name="P:Microsoft.AspNetCore.Mvc.Routing.AttributeRouteInfo.SuppressPathMatching">\r
4786             <summary>\r
4787             Gets or sets a value that determines if the route entry associated with this model participates in path matching (inbound routing).\r
4788             </summary>\r
4789         </member>\r
4790         <member name="T:Microsoft.AspNetCore.Mvc.Routing.UrlActionContext">\r
4791             <summary>\r
4792             Context object to be used for the URLs that <see cref="M:Microsoft.AspNetCore.Mvc.IUrlHelper.Action(Microsoft.AspNetCore.Mvc.Routing.UrlActionContext)"/> generates.\r
4793             </summary>\r
4794         </member>\r
4795         <member name="P:Microsoft.AspNetCore.Mvc.Routing.UrlActionContext.Action">\r
4796             <summary>\r
4797             The name of the action method that <see cref="M:Microsoft.AspNetCore.Mvc.IUrlHelper.Action(Microsoft.AspNetCore.Mvc.Routing.UrlActionContext)"/> uses to generate URLs.\r
4798             </summary>\r
4799         </member>\r
4800         <member name="P:Microsoft.AspNetCore.Mvc.Routing.UrlActionContext.Controller">\r
4801             <summary>\r
4802             The name of the controller that <see cref="M:Microsoft.AspNetCore.Mvc.IUrlHelper.Action(Microsoft.AspNetCore.Mvc.Routing.UrlActionContext)"/> uses to generate URLs.\r
4803             </summary>\r
4804         </member>\r
4805         <member name="P:Microsoft.AspNetCore.Mvc.Routing.UrlActionContext.Values">\r
4806             <summary>\r
4807             The object that contains the route values that <see cref="M:Microsoft.AspNetCore.Mvc.IUrlHelper.Action(Microsoft.AspNetCore.Mvc.Routing.UrlActionContext)"/>\r
4808             uses to generate URLs.\r
4809             </summary>\r
4810         </member>\r
4811         <member name="P:Microsoft.AspNetCore.Mvc.Routing.UrlActionContext.Protocol">\r
4812             <summary>\r
4813             The protocol for the URLs that <see cref="M:Microsoft.AspNetCore.Mvc.IUrlHelper.Action(Microsoft.AspNetCore.Mvc.Routing.UrlActionContext)"/> generates,\r
4814             such as "http" or "https"\r
4815             </summary>\r
4816         </member>\r
4817         <member name="P:Microsoft.AspNetCore.Mvc.Routing.UrlActionContext.Host">\r
4818             <summary>\r
4819             The host name for the URLs that <see cref="M:Microsoft.AspNetCore.Mvc.IUrlHelper.Action(Microsoft.AspNetCore.Mvc.Routing.UrlActionContext)"/> generates.\r
4820             </summary>\r
4821         </member>\r
4822         <member name="P:Microsoft.AspNetCore.Mvc.Routing.UrlActionContext.Fragment">\r
4823             <summary>\r
4824             The fragment for the URLs that <see cref="M:Microsoft.AspNetCore.Mvc.IUrlHelper.Action(Microsoft.AspNetCore.Mvc.Routing.UrlActionContext)"/> generates.\r
4825             </summary>\r
4826         </member>\r
4827         <member name="T:Microsoft.AspNetCore.Mvc.Routing.UrlRouteContext">\r
4828             <summary>\r
4829             Context object to be used for the URLs that <see cref="M:Microsoft.AspNetCore.Mvc.IUrlHelper.RouteUrl(Microsoft.AspNetCore.Mvc.Routing.UrlRouteContext)"/> generates.\r
4830             </summary>\r
4831         </member>\r
4832         <member name="P:Microsoft.AspNetCore.Mvc.Routing.UrlRouteContext.RouteName">\r
4833             <summary>\r
4834             The name of the route that <see cref="M:Microsoft.AspNetCore.Mvc.IUrlHelper.RouteUrl(Microsoft.AspNetCore.Mvc.Routing.UrlRouteContext)"/> uses to generate URLs.\r
4835             </summary>\r
4836         </member>\r
4837         <member name="P:Microsoft.AspNetCore.Mvc.Routing.UrlRouteContext.Values">\r
4838             <summary>\r
4839             The object that contains the route values that <see cref="M:Microsoft.AspNetCore.Mvc.IUrlHelper.RouteUrl(Microsoft.AspNetCore.Mvc.Routing.UrlRouteContext)"/>\r
4840             uses to generate URLs.\r
4841             </summary>\r
4842         </member>\r
4843         <member name="P:Microsoft.AspNetCore.Mvc.Routing.UrlRouteContext.Protocol">\r
4844             <summary>\r
4845             The protocol for the URLs that <see cref="M:Microsoft.AspNetCore.Mvc.IUrlHelper.RouteUrl(Microsoft.AspNetCore.Mvc.Routing.UrlRouteContext)"/> generates,\r
4846             such as "http" or "https"\r
4847             </summary>\r
4848         </member>\r
4849         <member name="P:Microsoft.AspNetCore.Mvc.Routing.UrlRouteContext.Host">\r
4850             <summary>\r
4851             The host name for the URLs that <see cref="M:Microsoft.AspNetCore.Mvc.IUrlHelper.RouteUrl(Microsoft.AspNetCore.Mvc.Routing.UrlRouteContext)"/> generates.\r
4852             </summary>\r
4853         </member>\r
4854         <member name="P:Microsoft.AspNetCore.Mvc.Routing.UrlRouteContext.Fragment">\r
4855             <summary>\r
4856             The fragment for the URLs that <see cref="M:Microsoft.AspNetCore.Mvc.IUrlHelper.RouteUrl(Microsoft.AspNetCore.Mvc.Routing.UrlRouteContext)"/> generates.\r
4857             </summary>\r
4858         </member>\r
4859     </members>\r
4860 </doc>\r