[asp.net] HttpContext.RewritePath makes sure the passed path is in canonical form.
[mono.git] / mcs / class / System.Web / System.Web / TraceContextEventArgs.cs
index dc7ba83d29638e2535158c8f8503a645fe252139..f236fd47ee1c2f362a939a045e48c18991605ee6 100644 (file)
@@ -4,7 +4,7 @@
 // Author:
 //     Sebastien Pouliot  <sebastien@ximian.com>
 //
-// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
+// Copyright (C) 2005-2009 Novell, Inc (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
@@ -26,8 +26,6 @@
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
-
 using System.Collections;
 using System.Security.Permissions;
 
@@ -37,7 +35,7 @@ namespace System.Web {
        [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
        public sealed class TraceContextEventArgs : EventArgs {
 
-               private ICollection trace_records;
+               ICollection trace_records;
 
                public TraceContextEventArgs (ICollection records)
                {
@@ -49,5 +47,3 @@ namespace System.Web {
                }
        }
 }
-
-#endif