blob: 47a27dfa25f644a2bd235b67ebd119c47f513e15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
namespace System.Web.WebPages
{
// Implemented by classes that can create object instances from virtual path.
// Those implementations can completely bypass the BuildManager (e.g. for dynamic language pages)
public interface IVirtualPathFactory
{
bool Exists(string virtualPath);
object CreateInstance(string virtualPath);
}
}
|