// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Microsoft.AspNet.Mvc.Razor { /// /// Provides methods to activate properties on a instance. /// public interface IRazorPageActivator { /// /// When implemented in a type, activates an instantiated page. /// /// The page to activate. /// The for the executing view. void Activate(IRazorPage page, ViewContext context); } }