Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2009-11-07 01:23:59 +0300
committerMiguel de Icaza <miguel@gnome.org>2009-11-07 01:23:59 +0300
commit3c39ac4586b4470703fb4af0208b5baf1de70e43 (patch)
treec0975ffe02f52e4ebd91ac5c2ec535977138c502 /mcs/class/corlib/System.Security.Cryptography/CspParameters.cs
parentecc7eea0a0a7c41d50a206243174289e97896745 (diff)
Jumbo patch for NET_2_0, mscorlib is now clean
svn path=/trunk/mcs/; revision=145621
Diffstat (limited to 'mcs/class/corlib/System.Security.Cryptography/CspParameters.cs')
-rw-r--r--mcs/class/corlib/System.Security.Cryptography/CspParameters.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/mcs/class/corlib/System.Security.Cryptography/CspParameters.cs b/mcs/class/corlib/System.Security.Cryptography/CspParameters.cs
index f1b91a38240..653471ed43c 100644
--- a/mcs/class/corlib/System.Security.Cryptography/CspParameters.cs
+++ b/mcs/class/corlib/System.Security.Cryptography/CspParameters.cs
@@ -27,16 +27,12 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_2_0
using System.Runtime.InteropServices;
using System.Security.AccessControl;
-#endif
namespace System.Security.Cryptography {
-#if NET_2_0
[ComVisible (true)]
-#endif
public sealed class CspParameters {
private CspProviderFlags _Flags;
@@ -79,7 +75,6 @@ namespace System.Security.Cryptography {
set { _Flags = value; }
}
-#if NET_2_0
private SecureString _password;
private IntPtr _windowHandle;
@@ -116,6 +111,5 @@ namespace System.Security.Cryptography {
get { return _windowHandle; }
set { _windowHandle = value; }
}
-#endif
}
}