// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.AspNet.Routing.Template
{
///
/// The values used as inputs for constraints and link generation.
///
public class TemplateValuesResult
{
///
/// The set of values that will appear in the URL.
///
public RouteValueDictionary AcceptedValues { get; set; }
///
/// The set of values that that were supplied for URL generation.
///
///
/// This combines implicit (ambient) values from the 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.
///
public RouteValueDictionary CombinedValues { get; set; }
}
}