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:
authorSebastien Pouliot <sebastien@ximian.com>2005-06-08 15:29:29 +0400
committerSebastien Pouliot <sebastien@ximian.com>2005-06-08 15:29:29 +0400
commitfede5cfc65bcd3acfe52d56ac2790f8ba8706624 (patch)
tree7b6553f051c6a77faa3f5c581b27a196c1f582ef /mcs/class/corlib/System.Security/XmlSyntaxException.cs
parent2e6ccf308e710a905226eaa5c5e8089fba7da379 (diff)
2005-06-08 Sebastien Pouliot <sebastien@ximian.com>
* AllowPartiallyTrustedCallersAttribute.cs, HostSecurityManagerFlags.cs IEvidenceFactory.cs, IPermission.cs, ISecurityEncodable.cs, ISecurityPolicyEncodable.cs, IStackWalk.cs, NamedPermissionSet.cs, PolicyLevelType.cs, SecureString.cs, SecurityElement.cs, SecurityZone.cs, UnverifiableCodeAttribute.cs, VerificationException.cs XmlSyntaxException.cs: Fix 2.0 beta2 API changes (which is mostly adding ComVisible attributes to classes). svn path=/trunk/mcs/; revision=45630
Diffstat (limited to 'mcs/class/corlib/System.Security/XmlSyntaxException.cs')
-rw-r--r--mcs/class/corlib/System.Security/XmlSyntaxException.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/mcs/class/corlib/System.Security/XmlSyntaxException.cs b/mcs/class/corlib/System.Security/XmlSyntaxException.cs
index bac141c5ab4..e3a3845cd73 100644
--- a/mcs/class/corlib/System.Security/XmlSyntaxException.cs
+++ b/mcs/class/corlib/System.Security/XmlSyntaxException.cs
@@ -5,7 +5,7 @@
// Nick Drochak(ndrochak@gol.com)
//
// (C) Nick Drochak
-// 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
@@ -35,10 +35,10 @@ namespace System.Security {
[Serializable]
#if NET_2_0
- public sealed class XmlSyntaxException : SystemException, _Exception {
-#else
- public sealed class XmlSyntaxException : SystemException {
+ [ComVisible (true)]
#endif
+ public sealed class XmlSyntaxException : SystemException {
+
// Constructors
public XmlSyntaxException ()
{