1 <?xml version="1.0"?>
\r
4 <name>Microsoft.AspNetCore.Routing.Abstractions</name>
\r
7 <member name="T:Microsoft.AspNetCore.Routing.IOutboundParameterTransformer">
\r
9 Defines the contract that a class must implement to transform route values while building
\r
13 <member name="M:Microsoft.AspNetCore.Routing.IOutboundParameterTransformer.TransformOutbound(System.Object)">
\r
15 Transforms the specified route value to a string for inclusion in a URI.
\r
17 <param name="value">The route value to transform.</param>
\r
18 <returns>The transformed value.</returns>
\r
20 <member name="T:Microsoft.AspNetCore.Routing.IParameterPolicy">
\r
22 A marker interface for types that are associated with route parameters.
\r
25 <member name="T:Microsoft.AspNetCore.Routing.IRouteConstraint">
\r
27 Defines the contract that a class must implement in order to check whether a URL parameter
\r
28 value is valid for a constraint.
\r
31 <member name="M:Microsoft.AspNetCore.Routing.IRouteConstraint.Match(Microsoft.AspNetCore.Http.HttpContext,Microsoft.AspNetCore.Routing.IRouter,System.String,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Routing.RouteDirection)">
\r
33 Determines whether the URL parameter contains a valid value for this constraint.
\r
35 <param name="httpContext">An object that encapsulates information about the HTTP request.</param>
\r
36 <param name="route">The router that this constraint belongs to.</param>
\r
37 <param name="routeKey">The name of the parameter that is being checked.</param>
\r
38 <param name="values">A dictionary that contains the parameters for the URL.</param>
\r
39 <param name="routeDirection">
\r
40 An object that indicates whether the constraint check is being performed
\r
41 when an incoming request is being handled or when a URL is being generated.
\r
43 <returns><c>true</c> if the URL parameter contains a valid value; otherwise, <c>false</c>.</returns>
\r
45 <member name="T:Microsoft.AspNetCore.Routing.IRouteHandler">
\r
47 Defines a contract for a handler of a route.
\r
50 <member name="M:Microsoft.AspNetCore.Routing.IRouteHandler.GetRequestHandler(Microsoft.AspNetCore.Http.HttpContext,Microsoft.AspNetCore.Routing.RouteData)">
\r
52 Gets a <see cref="T:Microsoft.AspNetCore.Http.RequestDelegate"/> to handle the request, based on the provided
\r
53 <paramref name="routeData"/>.
\r
55 <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param>
\r
56 <param name="routeData">The <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> associated with the current routing match.</param>
\r
58 A <see cref="T:Microsoft.AspNetCore.Http.RequestDelegate"/>, or <c>null</c> if the handler cannot handle this request.
\r
61 <member name="T:Microsoft.AspNetCore.Routing.IRoutingFeature">
\r
63 A feature interface for routing functionality.
\r
66 <member name="P:Microsoft.AspNetCore.Routing.IRoutingFeature.RouteData">
\r
68 Gets or sets the <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> associated with the current request.
\r
71 <member name="T:Microsoft.AspNetCore.Routing.LinkGenerator">
\r
73 Defines a contract to generate absolute and related URIs based on endpoint routing.
\r
77 Generating URIs in endpoint routing occurs in two phases. First, an address is bound to a list of
\r
78 endpoints that match the address. Secondly, each endpoint's <c>RoutePattern</c> is evaluated, until
\r
79 a route pattern that matches the supplied values is found. The resulting output is combined with
\r
80 the other URI parts supplied to the link generator and returned.
\r
83 The methods provided by the <see cref="T:Microsoft.AspNetCore.Routing.LinkGenerator"/> type are general infrastructure, and support
\r
84 the standard link generator functionality for any type of address. The most convenient way to use
\r
85 <see cref="T:Microsoft.AspNetCore.Routing.LinkGenerator"/> is through extension methods that perform operations for a specific
\r
90 <member name="M:Microsoft.AspNetCore.Routing.LinkGenerator.GetPathByAddress``1(Microsoft.AspNetCore.Http.HttpContext,``0,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Routing.RouteValueDictionary,System.Nullable{Microsoft.AspNetCore.Http.PathString},Microsoft.AspNetCore.Http.FragmentString,Microsoft.AspNetCore.Routing.LinkOptions)">
\r
92 Generates a URI with an absolute path based on the provided values and <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/>.
\r
94 <typeparam name="TAddress">The address type.</typeparam>
\r
95 <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param>
\r
96 <param name="address">The address value. Used to resolve endpoints.</param>
\r
97 <param name="values">The route values. Used to expand parameters in the route template. Optional.</param>
\r
98 <param name="ambientValues">The values associated with the current request. Optional.</param>
\r
99 <param name="pathBase">
\r
100 An optional URI path base. Prepended to the path in the resulting URI. If not provided, the value of <see cref="P:Microsoft.AspNetCore.Http.HttpRequest.PathBase"/> will be used.
\r
102 <param name="fragment">An optional URI fragment. Appended to the resulting URI.</param>
\r
103 <param name="options">
\r
104 An optional <see cref="T:Microsoft.AspNetCore.Routing.LinkOptions"/>. Settings on provided object override the settings with matching
\r
105 names from <c>RouteOptions</c>.
\r
107 <returns>A URI with an absolute path, or <c>null</c>.</returns>
\r
109 <member name="M:Microsoft.AspNetCore.Routing.LinkGenerator.GetPathByAddress``1(``0,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Http.PathString,Microsoft.AspNetCore.Http.FragmentString,Microsoft.AspNetCore.Routing.LinkOptions)">
\r
111 Generates a URI with an absolute path based on the provided values.
\r
113 <typeparam name="TAddress">The address type.</typeparam>
\r
114 <param name="address">The address value. Used to resolve endpoints.</param>
\r
115 <param name="values">The route values. Used to expand parameters in the route template. Optional.</param>
\r
116 <param name="pathBase">An optional URI path base. Prepended to the path in the resulting URI.</param>
\r
117 <param name="fragment">An optional URI fragment. Appended to the resulting URI.</param>
\r
118 <param name="options">
\r
119 An optional <see cref="T:Microsoft.AspNetCore.Routing.LinkOptions"/>. Settings on provided object override the settings with matching
\r
120 names from <c>RouteOptions</c>.
\r
122 <returns>A URI with an absolute path, or <c>null</c>.</returns>
\r
124 <member name="M:Microsoft.AspNetCore.Routing.LinkGenerator.GetUriByAddress``1(Microsoft.AspNetCore.Http.HttpContext,``0,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Routing.RouteValueDictionary,System.String,System.Nullable{Microsoft.AspNetCore.Http.HostString},System.Nullable{Microsoft.AspNetCore.Http.PathString},Microsoft.AspNetCore.Http.FragmentString,Microsoft.AspNetCore.Routing.LinkOptions)">
\r
126 Generates an absolute URI based on the provided values and <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/>.
\r
128 <typeparam name="TAddress">The address type.</typeparam>
\r
129 <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param>
\r
130 <param name="address">The address value. Used to resolve endpoints.</param>
\r
131 <param name="values">The route values. Used to expand parameters in the route template. Optional.</param>
\r
132 <param name="ambientValues">The values associated with the current request. Optional.</param>
\r
133 <param name="scheme">
\r
134 The URI scheme, applied to the resulting URI. Optional. If not provided, the value of <see cref="P:Microsoft.AspNetCore.Http.HttpRequest.Scheme"/> will be used.
\r
136 <param name="host">
\r
137 The URI host/authority, applied to the resulting URI. Optional. If not provided, the value <see cref="P:Microsoft.AspNetCore.Http.HttpRequest.Host"/> will be used.
\r
138 See the remarks section for details about the security implications of the <paramref name="host"/>.
\r
140 <param name="pathBase">
\r
141 An optional URI path base. Prepended to the path in the resulting URI. If not provided, the value of <see cref="P:Microsoft.AspNetCore.Http.HttpRequest.PathBase"/> will be used.
\r
143 <param name="fragment">An optional URI fragment. Appended to the resulting URI.</param>
\r
144 <param name="options">
\r
145 An optional <see cref="T:Microsoft.AspNetCore.Routing.LinkOptions"/>. Settings on provided object override the settings with matching
\r
146 names from <c>RouteOptions</c>.
\r
148 <returns>A URI with an absolute path, or <c>null</c>.</returns>
\r
151 The value of <paramref name="host" /> should be a trusted value. Relying on the value of the current request
\r
152 can allow untrusted input to influence the resulting URI unless the <c>Host</c> header has been validated.
\r
153 See the deployment documentation for instructions on how to properly validate the <c>Host</c> header in
\r
154 your deployment environment.
\r
158 <member name="M:Microsoft.AspNetCore.Routing.LinkGenerator.GetUriByAddress``1(``0,Microsoft.AspNetCore.Routing.RouteValueDictionary,System.String,Microsoft.AspNetCore.Http.HostString,Microsoft.AspNetCore.Http.PathString,Microsoft.AspNetCore.Http.FragmentString,Microsoft.AspNetCore.Routing.LinkOptions)">
\r
160 Generates an absolute URI based on the provided values.
\r
162 <typeparam name="TAddress">The address type.</typeparam>
\r
163 <param name="address">The address value. Used to resolve endpoints.</param>
\r
164 <param name="values">The route values. Used to expand parameters in the route template. Optional.</param>
\r
165 <param name="scheme">The URI scheme, applied to the resulting URI.</param>
\r
166 <param name="host">
\r
167 The URI host/authority, applied to the resulting URI.
\r
168 See the remarks section for details about the security implications of the <paramref name="host"/>.
\r
170 <param name="pathBase">An optional URI path base. Prepended to the path in the resulting URI.</param>
\r
171 <param name="fragment">An optional URI fragment. Appended to the resulting URI.</param>
\r
172 <param name="options">
\r
173 An optional <see cref="T:Microsoft.AspNetCore.Routing.LinkOptions"/>. Settings on provided object override the settings with matching
\r
174 names from <c>RouteOptions</c>.
\r
176 <returns>An absolute URI, or <c>null</c>.</returns>
\r
179 The value of <paramref name="host" /> should be a trusted value. Relying on the value of the current request
\r
180 can allow untrusted input to influence the resulting URI unless the <c>Host</c> header has been validated.
\r
181 See the deployment documentation for instructions on how to properly validate the <c>Host</c> header in
\r
182 your deployment environment.
\r
186 <member name="P:Microsoft.AspNetCore.Routing.LinkOptions.LowercaseUrls">
\r
188 Gets or sets a value indicating whether all generated paths URLs are lower-case.
\r
189 Use <see cref="P:Microsoft.AspNetCore.Routing.LinkOptions.LowercaseQueryStrings" /> to configure the behavior for query strings.
\r
192 <member name="P:Microsoft.AspNetCore.Routing.LinkOptions.LowercaseQueryStrings">
\r
194 Gets or sets a value indicating whether a generated query strings are lower-case.
\r
195 This property will be unless <see cref="P:Microsoft.AspNetCore.Routing.LinkOptions.LowercaseUrls" /> is also <c>true</c>.
\r
198 <member name="P:Microsoft.AspNetCore.Routing.LinkOptions.AppendTrailingSlash">
\r
200 Gets or sets a value indicating whether a trailing slash should be appended to the generated URLs.
\r
203 <member name="T:Microsoft.AspNetCore.Routing.RouteContext">
\r
205 A context object for <see cref="M:Microsoft.AspNetCore.Routing.IRouter.RouteAsync(Microsoft.AspNetCore.Routing.RouteContext)"/>.
\r
208 <member name="M:Microsoft.AspNetCore.Routing.RouteContext.#ctor(Microsoft.AspNetCore.Http.HttpContext)">
\r
210 Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.RouteContext"/> for the provided <paramref name="httpContext"/>.
\r
212 <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param>
\r
214 <member name="P:Microsoft.AspNetCore.Routing.RouteContext.Handler">
\r
216 Gets or sets the handler for the request. An <see cref="T:Microsoft.AspNetCore.Routing.IRouter"/> should set <see cref="P:Microsoft.AspNetCore.Routing.RouteContext.Handler"/>
\r
220 <member name="P:Microsoft.AspNetCore.Routing.RouteContext.HttpContext">
\r
222 Gets the <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.
\r
225 <member name="P:Microsoft.AspNetCore.Routing.RouteContext.RouteData">
\r
227 Gets or sets the <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> associated with the current context.
\r
230 <member name="T:Microsoft.AspNetCore.Routing.RouteData">
\r
232 Information about the current routing path.
\r
235 <member name="M:Microsoft.AspNetCore.Routing.RouteData.#ctor">
\r
237 Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> instance.
\r
240 <member name="M:Microsoft.AspNetCore.Routing.RouteData.#ctor(Microsoft.AspNetCore.Routing.RouteData)">
\r
242 Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> instance with values copied from <paramref name="other"/>.
\r
244 <param name="other">The other <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> instance to copy.</param>
\r
246 <member name="M:Microsoft.AspNetCore.Routing.RouteData.#ctor(Microsoft.AspNetCore.Routing.RouteValueDictionary)">
\r
248 Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> instance with the specified values.
\r
250 <param name="values">The <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/> values.</param>
\r
252 <member name="P:Microsoft.AspNetCore.Routing.RouteData.DataTokens">
\r
254 Gets the data tokens produced by routes on the current routing path.
\r
257 <member name="P:Microsoft.AspNetCore.Routing.RouteData.Routers">
\r
259 Gets the list of <see cref="T:Microsoft.AspNetCore.Routing.IRouter"/> instances on the current routing path.
\r
262 <member name="P:Microsoft.AspNetCore.Routing.RouteData.Values">
\r
264 Gets the values produced by routes on the current routing path.
\r
267 <member name="M:Microsoft.AspNetCore.Routing.RouteData.PushState(Microsoft.AspNetCore.Routing.IRouter,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Routing.RouteValueDictionary)">
\r
270 Creates a snapshot of the current state of the <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> before appending
\r
271 <paramref name="router"/> to <see cref="P:Microsoft.AspNetCore.Routing.RouteData.Routers"/>, merging <paramref name="values"/> into
\r
272 <see cref="P:Microsoft.AspNetCore.Routing.RouteData.Values"/>, and merging <paramref name="dataTokens"/> into <see cref="P:Microsoft.AspNetCore.Routing.RouteData.DataTokens"/>.
\r
275 Call <see cref="M:Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot.Restore"/> to restore the state of this <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/>
\r
276 to the state at the time of calling
\r
277 <see cref="M:Microsoft.AspNetCore.Routing.RouteData.PushState(Microsoft.AspNetCore.Routing.IRouter,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Routing.RouteValueDictionary)"/>.
\r
280 <param name="router">
\r
281 An <see cref="T:Microsoft.AspNetCore.Routing.IRouter"/> to append to <see cref="P:Microsoft.AspNetCore.Routing.RouteData.Routers"/>. If <c>null</c>, then <see cref="P:Microsoft.AspNetCore.Routing.RouteData.Routers"/>
\r
282 will not be changed.
\r
284 <param name="values">
\r
285 A <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/> to merge into <see cref="P:Microsoft.AspNetCore.Routing.RouteData.Values"/>. If <c>null</c>, then
\r
286 <see cref="P:Microsoft.AspNetCore.Routing.RouteData.Values"/> will not be changed.
\r
288 <param name="dataTokens">
\r
289 A <see cref="T:Microsoft.AspNetCore.Routing.RouteValueDictionary"/> to merge into <see cref="P:Microsoft.AspNetCore.Routing.RouteData.DataTokens"/>. If <c>null</c>, then
\r
290 <see cref="P:Microsoft.AspNetCore.Routing.RouteData.DataTokens"/> will not be changed.
\r
292 <returns>A <see cref="T:Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot"/> that captures the current state.</returns>
\r
294 <member name="T:Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot">
\r
296 A snapshot of the state of a <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> instance.
\r
299 <member name="M:Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot.#ctor(Microsoft.AspNetCore.Routing.RouteData,Microsoft.AspNetCore.Routing.RouteValueDictionary,System.Collections.Generic.IList{Microsoft.AspNetCore.Routing.IRouter},Microsoft.AspNetCore.Routing.RouteValueDictionary)">
\r
301 Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot"/> for <paramref name="routeData"/>.
\r
303 <param name="routeData">The <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/>.</param>
\r
304 <param name="dataTokens">The data tokens.</param>
\r
305 <param name="routers">The routers.</param>
\r
306 <param name="values">The route values.</param>
\r
308 <member name="M:Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot.Restore">
\r
310 Restores the <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> to the captured state.
\r
313 <member name="T:Microsoft.AspNetCore.Routing.RouteDirection">
\r
315 Indicates whether ASP.NET routing is processing a URL from an HTTP request or generating a URL.
\r
318 <member name="F:Microsoft.AspNetCore.Routing.RouteDirection.IncomingRequest">
\r
320 A URL from a client is being processed.
\r
323 <member name="F:Microsoft.AspNetCore.Routing.RouteDirection.UrlGeneration">
\r
325 A URL is being created based on the route definition.
\r
328 <member name="T:Microsoft.AspNetCore.Routing.RoutingHttpContextExtensions">
\r
330 Extension methods for <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> related to routing.
\r
333 <member name="M:Microsoft.AspNetCore.Routing.RoutingHttpContextExtensions.GetRouteData(Microsoft.AspNetCore.Http.HttpContext)">
\r
335 Gets the <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/> associated with the provided <paramref name="httpContext"/>.
\r
337 <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param>
\r
338 <returns>The <see cref="T:Microsoft.AspNetCore.Routing.RouteData"/>, or null.</returns>
\r
340 <member name="M:Microsoft.AspNetCore.Routing.RoutingHttpContextExtensions.GetRouteValue(Microsoft.AspNetCore.Http.HttpContext,System.String)">
\r
342 Gets a route value from <see cref="P:Microsoft.AspNetCore.Routing.RouteData.Values"/> associated with the provided
\r
343 <paramref name="httpContext"/>.
\r
345 <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param>
\r
346 <param name="key">The key of the route value.</param>
\r
347 <returns>The corresponding route value, or null.</returns>
\r
349 <member name="T:Microsoft.AspNetCore.Routing.VirtualPathContext">
\r
351 A context for virtual path generation operations.
\r
354 <member name="M:Microsoft.AspNetCore.Routing.VirtualPathContext.#ctor(Microsoft.AspNetCore.Http.HttpContext,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Routing.RouteValueDictionary)">
\r
356 Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.VirtualPathContext"/>.
\r
358 <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param>
\r
359 <param name="ambientValues">The set of route values associated with the current request.</param>
\r
360 <param name="values">The set of new values provided for virtual path generation.</param>
\r
362 <member name="M:Microsoft.AspNetCore.Routing.VirtualPathContext.#ctor(Microsoft.AspNetCore.Http.HttpContext,Microsoft.AspNetCore.Routing.RouteValueDictionary,Microsoft.AspNetCore.Routing.RouteValueDictionary,System.String)">
\r
364 Creates a new instance of <see cref="T:Microsoft.AspNetCore.Routing.VirtualPathContext"/>.
\r
366 <param name="httpContext">The <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.</param>
\r
367 <param name="ambientValues">The set of route values associated with the current request.</param>
\r
368 <param name="values">The set of new values provided for virtual path generation.</param>
\r
369 <param name="routeName">The name of the route to use for virtual path generation.</param>
\r
371 <member name="P:Microsoft.AspNetCore.Routing.VirtualPathContext.AmbientValues">
\r
373 Gets the set of route values associated with the current request.
\r
376 <member name="P:Microsoft.AspNetCore.Routing.VirtualPathContext.HttpContext">
\r
378 Gets the <see cref="T:Microsoft.AspNetCore.Http.HttpContext"/> associated with the current request.
\r
381 <member name="P:Microsoft.AspNetCore.Routing.VirtualPathContext.RouteName">
\r
383 Gets the name of the route to use for virtual path generation.
\r
386 <member name="P:Microsoft.AspNetCore.Routing.VirtualPathContext.Values">
\r
388 Gets or sets the set of new values provided for virtual path generation.
\r
391 <member name="T:Microsoft.AspNetCore.Routing.VirtualPathData">
\r
393 Represents information about the route and virtual path that are the result of
\r
394 generating a URL with the ASP.NET routing middleware.
\r
397 <member name="M:Microsoft.AspNetCore.Routing.VirtualPathData.#ctor(Microsoft.AspNetCore.Routing.IRouter,System.String)">
\r
399 Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Routing.VirtualPathData"/> class.
\r
401 <param name="router">The object that is used to generate the URL.</param>
\r
402 <param name="virtualPath">The generated URL.</param>
\r
404 <member name="M:Microsoft.AspNetCore.Routing.VirtualPathData.#ctor(Microsoft.AspNetCore.Routing.IRouter,System.String,Microsoft.AspNetCore.Routing.RouteValueDictionary)">
\r
406 Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Routing.VirtualPathData"/> class.
\r
408 <param name="router">The object that is used to generate the URL.</param>
\r
409 <param name="virtualPath">The generated URL.</param>
\r
410 <param name="dataTokens">The collection of custom values.</param>
\r
412 <member name="P:Microsoft.AspNetCore.Routing.VirtualPathData.DataTokens">
\r
414 Gets the collection of custom values for the <see cref="P:Microsoft.AspNetCore.Routing.VirtualPathData.Router"/>.
\r
417 <member name="P:Microsoft.AspNetCore.Routing.VirtualPathData.Router">
\r
419 Gets or sets the <see cref="T:Microsoft.AspNetCore.Routing.IRouter"/> that was used to generate the URL.
\r
422 <member name="P:Microsoft.AspNetCore.Routing.VirtualPathData.VirtualPath">
\r
424 Gets or sets the URL that was generated from the <see cref="P:Microsoft.AspNetCore.Routing.VirtualPathData.Router"/>.
\r
427 <member name="M:Microsoft.Extensions.Internal.PropertyHelper.#ctor(System.Reflection.PropertyInfo)">
\r
429 Initializes a fast <see cref="T:Microsoft.Extensions.Internal.PropertyHelper"/>.
\r
430 This constructor does not cache the helper. For caching, use <see cref="M:Microsoft.Extensions.Internal.PropertyHelper.GetProperties(System.Type)"/>.
\r
433 <member name="P:Microsoft.Extensions.Internal.PropertyHelper.Property">
\r
435 Gets the backing <see cref="T:System.Reflection.PropertyInfo"/>.
\r
438 <member name="P:Microsoft.Extensions.Internal.PropertyHelper.Name">
\r
440 Gets (or sets in derived types) the property name.
\r
443 <member name="P:Microsoft.Extensions.Internal.PropertyHelper.ValueGetter">
\r
445 Gets the property value getter.
\r
448 <member name="P:Microsoft.Extensions.Internal.PropertyHelper.ValueSetter">
\r
450 Gets the property value setter.
\r
453 <member name="M:Microsoft.Extensions.Internal.PropertyHelper.GetValue(System.Object)">
\r
455 Returns the property value for the specified <paramref name="instance"/>.
\r
457 <param name="instance">The object whose property value will be returned.</param>
\r
458 <returns>The property value.</returns>
\r
460 <member name="M:Microsoft.Extensions.Internal.PropertyHelper.SetValue(System.Object,System.Object)">
\r
462 Sets the property value for the specified <paramref name="instance" />.
\r
464 <param name="instance">The object whose property value will be set.</param>
\r
465 <param name="value">The property value.</param>
\r
467 <member name="M:Microsoft.Extensions.Internal.PropertyHelper.GetProperties(System.Reflection.TypeInfo)">
\r
469 Creates and caches fast property helpers that expose getters for every public get property on the
\r
472 <param name="typeInfo">The type info to extract property accessors for.</param>
\r
473 <returns>A cached array of all public properties of the specified type.
\r
476 <member name="M:Microsoft.Extensions.Internal.PropertyHelper.GetProperties(System.Type)">
\r
478 Creates and caches fast property helpers that expose getters for every public get property on the
\r
481 <param name="type">The type to extract property accessors for.</param>
\r
482 <returns>A cached array of all public properties of the specified type.
\r
485 <member name="M:Microsoft.Extensions.Internal.PropertyHelper.GetVisibleProperties(System.Reflection.TypeInfo)">
\r
488 Creates and caches fast property helpers that expose getters for every non-hidden get property
\r
489 on the specified type.
\r
492 <see cref="M:GetVisibleProperties"/> excludes properties defined on base types that have been
\r
493 hidden by definitions using the <c>new</c> keyword.
\r
496 <param name="typeInfo">The type info to extract property accessors for.</param>
\r
498 A cached array of all public properties of the specified type.
\r
501 <member name="M:Microsoft.Extensions.Internal.PropertyHelper.GetVisibleProperties(System.Type)">
\r
504 Creates and caches fast property helpers that expose getters for every non-hidden get property
\r
505 on the specified type.
\r
508 <see cref="M:GetVisibleProperties"/> excludes properties defined on base types that have been
\r
509 hidden by definitions using the <c>new</c> keyword.
\r
512 <param name="type">The type to extract property accessors for.</param>
\r
514 A cached array of all public properties of the specified type.
\r
517 <member name="M:Microsoft.Extensions.Internal.PropertyHelper.MakeFastPropertyGetter(System.Reflection.PropertyInfo)">
\r
519 Creates a single fast property getter. The result is not cached.
\r
521 <param name="propertyInfo">propertyInfo to extract the getter for.</param>
\r
522 <returns>a fast getter.</returns>
\r
524 This method is more memory efficient than a dynamically compiled lambda, and about the
\r
528 <member name="M:Microsoft.Extensions.Internal.PropertyHelper.MakeNullSafeFastPropertyGetter(System.Reflection.PropertyInfo)">
\r
530 Creates a single fast property getter which is safe for a null input object. The result is not cached.
\r
532 <param name="propertyInfo">propertyInfo to extract the getter for.</param>
\r
533 <returns>a fast getter.</returns>
\r
535 This method is more memory efficient than a dynamically compiled lambda, and about the
\r
539 <member name="M:Microsoft.Extensions.Internal.PropertyHelper.MakeFastPropertySetter(System.Reflection.PropertyInfo)">
\r
541 Creates a single fast property setter for reference types. The result is not cached.
\r
543 <param name="propertyInfo">propertyInfo to extract the setter for.</param>
\r
544 <returns>a fast getter.</returns>
\r
546 This method is more memory efficient than a dynamically compiled lambda, and about the
\r
547 same speed. This only works for reference types.
\r
550 <member name="M:Microsoft.Extensions.Internal.PropertyHelper.ObjectToDictionary(System.Object)">
\r
552 Given an object, adds each instance property with a public get method as a key and its
\r
553 associated value to a dictionary.
\r
555 If the object is already an <see cref="T:System.Collections.Generic.IDictionary`2"/> instance, then a copy
\r
559 The implementation of PropertyHelper will cache the property accessors per-type. This is
\r
560 faster when the same type is used multiple times with ObjectToDictionary.
\r