// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. using System.Collections.Generic; using Microsoft.AspNet.Abstractions; namespace Microsoft.AspNet.Routing { public class BindPathContext { public BindPathContext(HttpContext context, IDictionary ambientValues, IDictionary values) { Context = context; AmbientValues = ambientValues; Values = values; } public IDictionary AmbientValues { get; private set; } public HttpContext Context { get; private set; } public bool IsBound { get; set; } public string BoundPath { get; set; } public IDictionary Values { get; private set; } } }