System.Reflection.Assembly.IsFullyTrusted: add stub.
authorjbevain <jbevain@gmail.com>
Wed, 28 Jul 2010 08:01:35 +0000 (10:01 +0200)
committerjbevain <jbevain@gmail.com>
Wed, 28 Jul 2010 08:01:35 +0000 (10:01 +0200)
2010-07-28  Jb Evain  <jbevain@novell.com>

* Assembly.cs: add IsFullyTrusted stub.

mcs/class/corlib/System.Reflection/Assembly.cs
mcs/class/corlib/System.Reflection/ChangeLog

index 3898bf7ed50e0b601757c711742a01378a1b80a2..53ec6bf2786363c16cfc7ca19475eef74cdb3bad 100644 (file)
@@ -802,6 +802,11 @@ namespace System.Reflection {
                public PermissionSet PermissionSet {
                        get { return this.GrantedPermissionSet; }
                }
+
+               [MonoTODO]
+               public bool IsFullyTrusted {
+                       get { return true; }
+               }
 #endif
 
 #if !MOONLIGHT
index 4446304a358a9aca5e62c9f63c02883b32286213..be221baafd00205dd89ea5b1740c2676cf45180d 100644 (file)
@@ -1,3 +1,6 @@
+2010-07-28  Jb Evain  <jbevain@novell.com>\r
+\r
+       * Assembly.cs: add IsFullyTrusted stub.\r
 
 Thu Jul 22 11:05:04 CEST 2010 Paolo Molaro <lupus@ximian.com>