// Copyright (c) Microsoft Corporation. All rights reserved. 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; } } } }