Merge pull request #2020 from tomjepp/master
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / AdCreatedEventArgs.cs
index 2fa3af846010ee4b43bdc028a28c086ff2134f49..816faf32d1277d2d227ffa48584a0715367e32e8 100644 (file)
@@ -1,5 +1,5 @@
 //
-// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
+// Copyright (C) 2005-2010 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
 using System.Collections;
 using System.Security.Permissions;
 
-namespace System.Web.UI.WebControls {
-
+namespace System.Web.UI.WebControls
+{
        // CAS
        [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
-#if NET_2_0
        [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
-       public class AdCreatedEventArgs : EventArgs {
-#else
-       public sealed class AdCreatedEventArgs : EventArgs {
-#endif
-               private IDictionary properties;
+       public class AdCreatedEventArgs : EventArgs
+       {
+               IDictionary properties;
 
-               private string alt_text;
-               private string img_url;
-               private string nav_url;
+               string alt_text;
+               string img_url;
+               string nav_url;
 
                public AdCreatedEventArgs (IDictionary adProperties)
                {