blob: 6e165c4515bfa0a499e0aa23102c5c61f0a55998 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
namespace System.Web.WebPages.Razor
{
public class CompilingPathEventArgs : EventArgs
{
public CompilingPathEventArgs(string virtualPath, WebPageRazorHost host)
{
VirtualPath = virtualPath;
Host = host;
}
public string VirtualPath { get; private set; }
public WebPageRazorHost Host { get; set; }
}
}
|