2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.Security / System.Security.Cryptography.Xml / KeyInfoRetrievalMethod.cs
index 0d456001def0878b605eec9c75075a99e336c84e..eecafa155325cbc27f167d858a6e8da90af049ec 100644 (file)
@@ -9,6 +9,27 @@
 // Copyright (C) Tim Coleman, 2004
 //
 
+//
+// 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.Xml;
 
 namespace System.Security.Cryptography.Xml {
@@ -18,7 +39,7 @@ namespace System.Security.Cryptography.Xml {
                private string URI;
                private XmlElement element;
 
-#if NET_1_2
+#if NET_2_0
                string type;
 #endif
 
@@ -29,7 +50,7 @@ namespace System.Security.Cryptography.Xml {
                        URI = strUri;
                }
 
-#if NET_1_2
+#if NET_2_0
                public KeyInfoRetrievalMethod (string strUri, string strType)
                        : this (strUri)
                {
@@ -63,7 +84,7 @@ namespace System.Security.Cryptography.Xml {
                        XmlElement xel = document.CreateElement (XmlSignature.ElementNames.RetrievalMethod, XmlSignature.NamespaceURI);
                        if (URI != null)
                                xel.SetAttribute (XmlSignature.AttributeNames.URI, URI);
-#if NET_1_2
+#if NET_2_0
                        if (Type != null)
                                xel.SetAttribute (XmlSignature.AttributeNames.Type, Type);
 #endif
@@ -79,7 +100,7 @@ namespace System.Security.Cryptography.Xml {
                                URI = ""; // not null - so we return URI="" as attribute !!!
                        } else {
                                URI = value.Attributes [XmlSignature.AttributeNames.URI].Value;
-#if NET_1_2
+#if NET_2_0
                                if (value.HasAttribute (XmlSignature.AttributeNames.Type))
                                        Type = value.Attributes [XmlSignature.AttributeNames.Type].Value;
 #endif