TARGET_J2EE/JVM fixes
[mono.git] / mcs / class / System.Security / System.Security.Cryptography.Xml / Reference.cs
index 94fd08c6808e03a0eb39d9b8fdb4c11c9130ef6c..70128b0ef088139d2cc5be3ae7e19eefc605c95f 100644 (file)
@@ -5,10 +5,30 @@
 //     Sebastien Pouliot <sebastien@ximian.com>
 //
 // (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com)
-// (C) 2004 Novell (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
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
 using System.IO;
+using System.Runtime.InteropServices;
 using System.Xml;
 
 namespace System.Security.Cryptography.Xml { 
@@ -69,6 +89,10 @@ namespace System.Security.Cryptography.Xml {
 
                public TransformChain TransformChain {
                        get { return chain; }
+#if NET_2_0
+                       [ComVisible (false)]
+                       set { chain = value; }
+#endif
                }
 
                public string Type {
@@ -178,6 +202,9 @@ namespace System.Security.Cryptography.Xml {
                                                case "http://www.w3.org/TR/1999/REC-xslt-19991116":
                                                        t = new XmlDsigXsltTransform ();
                                                        break;
+                                               case "http://www.w3.org/2002/07/decrypt#XML":
+                                                       t = new XmlDecryptionTransform ();
+                                                       break;
                                                default:
                                                        throw new NotSupportedException ();
                                        }