// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace System.Web.WebPages { /// /// TemplateFileInfo specifies properties of a template such as VirtualPath. /// This type allows us to modify the behavior of ITemplateFile between releases without changing the interface. /// public class TemplateFileInfo { private readonly string _virtualPath; public TemplateFileInfo(string virtualPath) { _virtualPath = virtualPath; } public string VirtualPath { get { return _virtualPath; } } } }