Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IViewStartPageChild.cs « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b97d02ed2b37624090afa39f8d571891f61e368f (plain)
1
2
3
4
5
6
7
8
9
namespace System.Web.Mvc
{
    internal interface IViewStartPageChild
    {
        HtmlHelper<object> Html { get; }
        UrlHelper Url { get; }
        ViewContext ViewContext { get; }
    }
}