Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Web/System.Web.UI/BaseParser.cs')
-rwxr-xr-xmcs/class/System.Web/System.Web.UI/BaseParser.cs9
1 files changed, 1 insertions, 8 deletions
diff --git a/mcs/class/System.Web/System.Web.UI/BaseParser.cs b/mcs/class/System.Web/System.Web.UI/BaseParser.cs
index e314e9d2326..91aae69bbf8 100755
--- a/mcs/class/System.Web/System.Web.UI/BaseParser.cs
+++ b/mcs/class/System.Web/System.Web.UI/BaseParser.cs
@@ -21,7 +21,6 @@ namespace System.Web.UI
private HttpContext context;
private string baseDir;
private string baseVDir;
- private string vPath;
internal string MapPath (string path)
{
@@ -89,7 +88,7 @@ namespace System.Web.UI
}
}
- internal string BaseVirtualDir {
+ internal virtual string BaseVirtualDir {
get {
if (baseVDir == null)
baseVDir = UrlUtils.GetDirectory (context.Request.FilePath);
@@ -97,12 +96,6 @@ namespace System.Web.UI
return baseVDir;
}
}
-
- internal string CurrentVirtualPath {
- get { return vPath; }
- set { vPath = value; }
- }
}
-
}