2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.Security / System.Security.Cryptography.Xml / KeyInfoRetrievalMethod.cs
index 2a891e143c047119e43652a7e6f2d0bf5a902e4e..eecafa155325cbc27f167d858a6e8da90af049ec 100644 (file)
@@ -3,8 +3,31 @@
 //
 // Author:
 //     Sebastien Pouliot (spouliot@motus.com)
+//      Tim Coleman (tim@timcoleman.com)
 //
 // (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com)
+// 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;
@@ -14,6 +37,11 @@ namespace System.Security.Cryptography.Xml {
        public class KeyInfoRetrievalMethod : KeyInfoClause {
 
                private string URI;
+               private XmlElement element;
+
+#if NET_2_0
+               string type;
+#endif
 
                public KeyInfoRetrievalMethod () {}
 
@@ -22,17 +50,44 @@ namespace System.Security.Cryptography.Xml {
                        URI = strUri;
                }
 
+#if NET_2_0
+               public KeyInfoRetrievalMethod (string strUri, string strType)
+                       : this (strUri)
+               {
+                       Type = strType;
+               }
+
+               public string Type {
+                       get { return type; }
+                       set {
+                               element = null;
+                               type = value;
+                       }
+               }
+#endif
+
                public string Uri {
                        get { return URI; }
-                       set { URI = value; }
+                       set {
+                               element = null;
+                               URI = value;
+                       }
                }
 
+
                public override XmlElement GetXml () 
                {
+                       if (element != null)
+                               return element;
+
                        XmlDocument document = new XmlDocument ();
                        XmlElement xel = document.CreateElement (XmlSignature.ElementNames.RetrievalMethod, XmlSignature.NamespaceURI);
                        if (URI != null)
                                xel.SetAttribute (XmlSignature.AttributeNames.URI, URI);
+#if NET_2_0
+                       if (Type != null)
+                               xel.SetAttribute (XmlSignature.AttributeNames.Type, Type);
+#endif
                        return xel;
                }
 
@@ -41,10 +96,16 @@ namespace System.Security.Cryptography.Xml {
                        if (value == null)
                                throw new ArgumentNullException ();
 
-                       if ((value.LocalName != XmlSignature.ElementNames.RetrievalMethod) || (value.NamespaceURI != XmlSignature.NamespaceURI))
+                       if ((value.LocalName != XmlSignature.ElementNames.RetrievalMethod) || (value.NamespaceURI != XmlSignature.NamespaceURI)) {
                                URI = ""; // not null - so we return URI="" as attribute !!!
-                       else
+                       } else {
                                URI = value.Attributes [XmlSignature.AttributeNames.URI].Value;
+#if NET_2_0
+                               if (value.HasAttribute (XmlSignature.AttributeNames.Type))
+                                       Type = value.Attributes [XmlSignature.AttributeNames.Type].Value;
+#endif
+                               element = value;
+                       }
                }
        }
-}
\ No newline at end of file
+}