28 lines
853 B
C#
28 lines
853 B
C#
// 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<string, object> ambientValues, IDictionary<string, object> values)
|
||
{
|
||
Context = context;
|
||
AmbientValues = ambientValues;
|
||
Values = values;
|
||
}
|
||
|
||
public IDictionary<string, object> AmbientValues { get; private set; }
|
||
|
||
public HttpContext Context { get; private set; }
|
||
|
||
public bool IsBound { get; set; }
|
||
|
||
public string BoundPath { get; set; }
|
||
|
||
public IDictionary<string, object> Values { get; private set; }
|
||
}
|
||
}
|