Merge pull request #2237 from xmcclure/container-owner
[mono.git] / mcs / class / System.Security / System.Security.Cryptography.Xml / SignedInfo.cs
index 38496b8f0929c9efd893e0fd16dd2f129a3e4b7f..f9d6d9f0048610ece2aeac44f9a0d08b4f625ad1 100644 (file)
@@ -44,17 +44,10 @@ namespace System.Security.Cryptography.Xml {
                private string signatureLength;
                private XmlElement element;
 
-#if NET_2_0
-               XmlDsigC14NTransform canonicalizationMethodObject;
-#endif
-
                public SignedInfo() 
                {
                        references = new ArrayList ();
                        c14nMethod = "http://www.w3.org/TR/2001/REC-xml-c14n-20010315";
-#if NET_2_0    
-                       canonicalizationMethodObject = new XmlDsigC14NTransform ();
-#endif
                }
 
                public string CanonicalizationMethod {
@@ -65,12 +58,11 @@ namespace System.Security.Cryptography.Xml {
                        }
                }
 
-#if NET_2_0
                [ComVisible (false)]
+               [MonoTODO]
                public Transform CanonicalizationMethodObject {
-                       get { return canonicalizationMethodObject; }
+                       get { throw new NotImplementedException (); }
                }
-#endif
 
                // documented as not supported (and throwing exception)
                public int Count {