//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.Configuration { using System.Security.Permissions; /// /// /// Property dictionary available to section handlers in /// web applications. /// /// public class HttpConfigurationContext { private string vpath; /// /// /// Virtual path to the virtual directory containing web.config. /// This could be the virtual path to a file in the case of a /// section in <location path='file.aspx'>. /// /// public string VirtualPath { get { return vpath; } } /// /// Can only be created by ASP.NET Configuration System. /// internal HttpConfigurationContext(string vpath) { this.vpath = vpath; } } }