App.Web.HttpContextExtensions.SetRouteValue C# (CSharp) Method

SetRouteValue() static private method

static private SetRouteValue ( this context, RouteValueDictionary route ) : void
context this
route RouteValueDictionary
return void
        internal static void SetRouteValue(this HttpContextBase context, RouteValueDictionary route)
        {
            context.Items[RouteKey] = route;
        }
HttpContextExtensions