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