blob: 957d4251c5a74653b5ea43a51f5b66d2e324b67a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
namespace System.Web.WebPages
{
/// <summary>
/// An interface that provides information about the current executing file.
/// WebPageRenderingBase implements this type so that all pages excluding AppStart pages could be queried to identify the
/// current executing file.
/// </summary>
public interface ITemplateFile
{
TemplateFileInfo TemplateInfo { get; }
}
}
|