192b3ad4e2413b0ef56654a75e7b7c5a7e7f959b
[mono.git] / mcs / class / System.Web / System.Web.Configuration / HttpConfigurationContext.cs
1 //
2 // System.Web.Configuration.HttpConfigurationContext
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2002 Ximian, Inc (http://www.ximian.com)
8 //
9
10 namespace System.Web.Configuration
11 {
12         public class HttpConfigurationContext
13         {
14                 private string virtualPath;
15
16                 internal HttpConfigurationContext (string virtualPath)
17                 {
18                         this.virtualPath = virtualPath;
19                 }
20
21                 public string VirtualPath
22                 {
23                         get {
24                                 return virtualPath;
25                         }
26                 }
27         }
28 }
29