Merge pull request #5198 from BrzVlad/fix-binprot-stats
[mono.git] / mcs / class / corlib / System.Security.Permissions / StrongNamePermissionAttribute.cs
index 97bd04ac8f737560c498ff78d6a01b318bb81bee..52a120d4909c23905247a6c79b14a4199a599666 100644 (file)
@@ -6,7 +6,7 @@
 //     Sebastien Pouliot  <sebastien@ximian.com>
 //
 // (C) 2002 Ximian, Inc.                       http://www.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
 //
 
 using System.Globalization;
+using System.Runtime.InteropServices;
 
 namespace System.Security.Permissions {
 
+       [ComVisible (true)]
        [AttributeUsage (AttributeTargets.Assembly | AttributeTargets.Class |
                         AttributeTargets.Struct | AttributeTargets.Constructor |
                         AttributeTargets.Method, AllowMultiple=true, Inherited=false)]
@@ -68,6 +70,9 @@ namespace System.Security.Permissions {
                // Methods
                public override IPermission CreatePermission ()
                {
+#if MOBILE
+                       return null;
+#else
                        if (this.Unrestricted)
                                return new StrongNameIdentityPermission (PermissionState.Unrestricted);
 
@@ -85,6 +90,7 @@ namespace System.Security.Permissions {
                                v = new Version (version);
 
                        return new StrongNameIdentityPermission (blob, name, v);
+#endif
                }
        }
 }