2009-06-30 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mcs / class / corlib / System.Security.Policy / ProvideAssemblyEvidenceEventArgs.cs
index 9fd5c1f9a519a38a2c45d1f696bae8875dc0dd81..06e6f41fcaa5b95d26a09a9906ccc3ab935cd2ee 100644 (file)
@@ -4,7 +4,7 @@
 // Author:
 //     Sebastien Pouliot  <sebastien@ximian.com>
 //
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+// Copyright (C) 2004-2005 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
 
 #if NET_2_0
 
-using System;
 using System.Reflection;
+using System.Runtime.InteropServices;
 
 namespace System.Security.Policy {
 
+       [ComVisible (true)]
        public class ProvideAssemblyEvidenceEventArgs : EventArgs {
 
                private Assembly _assembly;
@@ -50,7 +51,6 @@ namespace System.Security.Policy {
 
                public Evidence Evidence {
                        get { return _evidence; }
-                       set { _evidence = value; }
                }
        }
 }