14 lines
429 B
C#
Raw Normal View History

//------------------------------------------------------------------------------
// <copyright file="IServerConfig2.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.Configuration {
interface IServerConfig2 {
bool IsWithinApp(string virtualPath);
}
}