TemplateValuesResult.CombinedValues Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The set of values that that were supplied for URL generation.
public:
property Microsoft::AspNetCore::Routing::RouteValueDictionary ^ CombinedValues { Microsoft::AspNetCore::Routing::RouteValueDictionary ^ get(); void set(Microsoft::AspNetCore::Routing::RouteValueDictionary ^ value); };
public Microsoft.AspNetCore.Routing.RouteValueDictionary CombinedValues { get; set; }
member this.CombinedValues : Microsoft.AspNetCore.Routing.RouteValueDictionary with get, set
Public Property CombinedValues As RouteValueDictionary
Property Value
Remarks
This combines implicit (ambient) values from the RouteData of the current request (if applicable), explictly provided values, and default values for parameters that appear in the route template.
Implicit (ambient) values which are invalidated due to changes in values lexically earlier in the route template are excluded from this set.